Please fix this indicator or EA - page 192

 
Dear mladen,,can you tell me what could be wrong on this robot?when I reviewed all the wonderful even it is not smooth,probably the whole Internet!and on a demo account merges!can be no script for video YouTube?thanks in advance!
 
Files:
ASSAR V8.ex4  58 kb
ASSAR V8.mq4  33 kb
 
melkrobert:
Dear mladen,,can you tell me what could be wrong on this robot?when I reviewed all the wonderful even it is not smooth,probably the whole Internet!and on a demo account merges!can be no script for video YouTube?thanks in advance!
Please post the original (non-decmpiled) source so it can be checked
 
I don't even know how to look like the original!I only have those two files(
 
melkrobert:
I don't even know how to look like the original!I only have those two files(
Does not matter how, but that is decompiled stuff

And that stuff is adjusted to work differently when testing. Forget about it ...
 
I even think that is not the profitable the experts!all test all class)!and how to put on a demo account all merges))thank you dear for the help!I think a couple to quit Forex so it is not possible to earn a living.may God grant you health dear mladen!!!
                                                                                                                              
 
mladen:
No, that file is not needed any more

Thank you very much.

 

mladen,

"stoch_ea_v4.1.2" default settings are not profitable. (I said "okay it could be")  :)

I played a lot of settings, tf etc. But I did not make a profitable results. (I use Birt Ltd.'s 99% Quality TickData history from Dukascopy) 

 

So I wanted to "do an optimization test" but it does not produce test results.

Does this have a reason?

 


 

  

 
oguz:

Thank you very much.

 

mladen,

"stoch_ea_v4.1.2" default settings are not profitable. (I said "okay it could be")  :)

I played a lot of settings, tf etc. But I did not make a profitable results. (I use Birt Ltd.'s 99% Quality TickData history from Dukascopy) 

 

So I wanted to "do an optimization test" but it does not produce test results.

Does this have a reason?

 


 

  

Check what errors do you get
 
mladen:
Check what errors do you get

mladen,

I think I found the problem.

The problem is when the test date is more than two months old! 

If the backtest date is max 1.5 or 2 months, there is no problem. Interesting!

 

By the way,

There are too many options in settings.

Which settings do you recommend to play for optimization?

I'm asking because I don't want to extend the test period with non-effective settings. 

 

 

 

 

Hello Mladen , could you please take a look at this indicator.

- The Indicator is coded to draw a candlestick with wick in the sub window ,  is it possible to make it draw a bar chart with OHLC instead?  

  If Yes How do i Modify This To Draw A bar chart

void drawCandle(int i)

{

   datetime time = Time[i];

   string   name = UniqueID+":"+time+":";   

      ObjectCreate(name,OBJ_TREND,window,0,0,0,0);

         ObjectSet(name,OBJPROP_COLOR,WickColor);

         ObjectSet(name,OBJPROP_TIME1,time);

         ObjectSet(name,OBJPROP_TIME2,time);

         ObjectSet(name,OBJPROP_PRICE1,MathMax(high[i],MathMin(close[i],open[i])));

         ObjectSet(name,OBJPROP_PRICE2,MathMin(low[i] ,MathMax(close[i],open[i])));

         ObjectSet(name,OBJPROP_RAY ,false);

         ObjectSet(name,OBJPROP_BACK,DrawAsBack);

   /////////// 

   name = name+"body";

      ObjectCreate(name,OBJ_TREND,window,0,0,0,0);

         ObjectSet(name,OBJPROP_TIME1,time);

         ObjectSet(name,OBJPROP_TIME2,time);

         ObjectSet(name,OBJPROP_PRICE1,open[i]);

         ObjectSet(name,OBJPROP_PRICE2,close[i]);

         ObjectSet(name,OBJPROP_WIDTH,BodyWidth);

         ObjectSet(name,OBJPROP_RAY  ,false);

         ObjectSet(name,OBJPROP_BACK,DrawAsBack);

         if (open[i]<close[i])

               ObjectSet(name,OBJPROP_COLOR,BodyUpColor);

         else  ObjectSet(name,OBJPROP_COLOR,BodyDownColor);

} 
Files:
bar_chart.mq4  4 kb