- Credits
- 11
You want to add Max order and Max lot size as filter?Hi Tanaka,
I like your Ea work. I want to want to help develop Ea Martingail Expert v1 stochastic
to have max order and maxlot. Thank you.
You want to add Max order and Max lot size as filter?Hi Tanaka,
I like your Ea work. I want to want to help develop Ea Martingail Expert v1 stochastic
to have max order and maxlot. Thank you.
You want to add Max order and Max lot size as filter?
Yes, I need and how much to donateYou want to add Max order and Max lot size as filter?
I have checked indicator code.MR TANAKA.PLS AM ON MY KNEE PLEADING WITH YOU TO PLS KINDLY HELP TO MAKE THIS EA PICK TRADE IMMEDIATELY THE COLOURE CHANGE ON THE SAME CANDLE ON H1 TIME FRAME .MANUALLY AM MAKING ALOT PROFIT WITH BUT E.A ONLY PICK TRADE AFTER THE CANDLE EXPIRE AND ALOT OF PIPS ARE LOST. PLS KINDLY USE YOUR TECHNICAL KNOWLEDGE TO MAKE THIS WORK EITHER IT RECALCULATE OR NOT BUT I CAN ASSURE U IS A AN AN INDICATOR THAT DOES NOT REPAINT. OPPOSITE CLOSE AND MATINGALE2 . ANY OF THIS TWO OPTION WILL BE A PERFECT SETING IF YOU CAN MAKE THE E.A TRADE ON IMMEDIATE CANDLE.
ADX0 = iADX(NULL, 0, ADXPeriod, PRICE_CLOSE, MODE_MAIN, i);
ADX1 = iADX(NULL, 0, ADXPeriod, PRICE_CLOSE, MODE_PLUSDI, i);
ADX2 = iADX(NULL, 0, ADXPeriod, PRICE_CLOSE, MODE_MINUSDI, i);
//----
if(ADX1 >= ADX2) Then ==GREEN BAR
Hello Master tanaka akiko
Can you make EA based on this indicator (no repaint). ? Attached The Peak Indicator.
Red = open sell. Green = Open Buy. (if the Peak reach 1.5 and so on)
View attachment 86174
You mean BUY and SELL is opposite? Above EMA =buy Blow EMA=sell??
Which EA is it?
I coded before.Hello Master tanaka akiko
Can you make EA based on this indicator (no repaint). ? Attached The Peak Indicator.
Red = open sell. Green = Open Buy. (if the Peak reach 1.5 and so on)
View attachment 86174
Many version I have. Which version?EA TMA cg mladen ser
i mean EMA just for filtering opening order only
but for closing (in this case i use opposite signal for close) dont filter with EMA
so we have different rule to opening order and closing
when EMA filter is activated the rule will gonna be like this :
for opening order :
BUY when "TMA cg mladen never repaint" signal is buy and above EMA
SELL when "TMA cg mladen never repaint" signal is sell and below EMA
for closing :
"TMA cg mladen never repaint" signal is buy then close all sell order
"TMA cg mladen never repaint" signal is sell then close all buy order
it is possible ??

Hi bro Tanaka..I have backtest with your set file (EU M5)
Initially buy1 and sell1 are placed. (Hedge)
Then buy order martin is placed, 1,2,3,4 then close together.
After that initial hedge sell order is closed alone. (because there is only one sell order)
I don't see any problem for me.
By the way, if you want to close order with profit dollar $2, you need to select from Unused to Manual input.
View attachment 86160
Also you put martin tp=5pips
View attachment 86159
So martin order is closed with 5pips tp.
View attachment 86157
Many arrow but order with all arrows?Hi Mr Tanaka can you create one of Ea based on this strategy one buy perarrow until signal change and reverse the position Thank you for your great effort
Many version I have. Which version?
View attachment 86180
Thanks for all Your effort . God bless youI have checked indicator code.
This indicator compare ADX DI+ DI- value current bar with previous bar.
That is why, on current bar, ADX value is not established yet, because always the value is changing and once ADX value is fixed, then signal is made in next candle stick.
I have tried to change code and tried to read current bar data but it is always changing and could not get fix value and I gave up it.
Code:ADX0 = iADX(NULL, 0, ADXPeriod, PRICE_CLOSE, MODE_MAIN, i); ADX1 = iADX(NULL, 0, ADXPeriod, PRICE_CLOSE, MODE_PLUSDI, i); ADX2 = iADX(NULL, 0, ADXPeriod, PRICE_CLOSE, MODE_MINUSDI, i); //---- if(ADX1 >= ADX2) Then ==GREEN BAR
Not so bad at allIf you want to close with opposite signal, trailing stop=false, then opposite close=true.
View attachment 86169