- Search Crypto Craft
-
Taiyakixz replied Aug 20, 2010
I think that you use the word 'patient'. It is translated to 'a person who gets ill'.Jiva Dragon
-
Taiyakixz replied Aug 20, 2010Please try v8.2. It deletes pending order by program instead of using OrderSend/OrderModify expiration. To other members: The modification of v8.2 is for the brokers which error 147 occurs. The strategy is not changed. v8.2 works on all brokers, but ...
Jiva Dragon
-
Taiyakixz replied Aug 19, 2010Thank you for report. error 1 means no changed value with OrderModify. No error 147 with testexpired2 and 10 ExpireCanldes delay. So it seems that setting expiration must be done with OrderModify and expired time must be longer than certain period, ...
Jiva Dragon
-
Taiyakixz replied Aug 18, 2010easy way: set color 0-3 to None, and menu Charts->Foreground Chart on or modify the code: SetIndexStyle(0,DRAW_HISTOGRAM); -> SetIndexStyle(0,DRAW_NONE); SetIndexStyle(1,DRAW_HISTOGRAM); -> SetIndexStyle(1,DRAW_NONE); ...
I need HA T3 alert only with arrows
-
Taiyakixz replied Aug 18, 2010Thank you. ummmm....with FXCM cannot use expiration....? Would you try with larger ExpireCandles?
Jiva Dragon
-
Taiyakixz replied Aug 18, 2010ummmm...error 147 means ERR_TRADE_EXPIRATION_DENIED. Would you please try attached EA and tell me the results? It doesn't set expired time with OrderSend, but OrderModify. I'm not sure that it solves the problem, but I want to see how it works. ...
Jiva Dragon
-
Taiyakixz replied Aug 17, 2010??? Do you have any questions? Of course, the first modification or hayseed's file is enough for displaying the lines. If you want to modify alert/comment and have any questions, ask me.
Help fix Vegas Currency mq4s for fractional pip trading
-
Taiyakixz replied Aug 17, 2010In addition, not related to fractional pip, but I found some bugs with alert and comment. If you use them, modify the code. both of Daily and WeeklyMonthly change 3 if lines below 'if(Alerts)' if(Bid==ExtMapBuffer1[0] || Bid==ExtMapBuffer2[0]) ...
Help fix Vegas Currency mq4s for fractional pip trading
-
Taiyakixz replied Aug 17, 2010I checked WeeklyMonthly. the same change.
Help fix Vegas Currency mq4s for fractional pip trading
-
Taiyakixz replied Aug 17, 2010for Daily add the code below 'double ExtMapBuffer8[];' double pt; add the code below 'SetIndexBuffer(7,ExtMapBuffer8);' if( Digits == 2 || Digits == 4 ) pt = Point; if( Digits == 3 || Digits == 5 ) pt = 10*Point; if( Digits == 6 ) pt = 100*Point; ...
Help fix Vegas Currency mq4s for fractional pip trading
-
Taiyakixz replied Aug 17, 2010Do you want to modify them for 5 digits brokers...?
Help fix Vegas Currency mq4s for fractional pip trading
-
Taiyakixz replied Aug 17, 2010I sent fixed version 8.1 to jiva. It will be uploaded soon. No other change from 8.0. So, for members who has no problem with taking order, update is not needed.
Jiva Dragon
-
Taiyakixz replied Aug 16, 2010window number must be >=0, I think it's program bug. check ObjectCreate in your program first.
fix unknown subwindow number -1 for ObjectCreate function
-
Taiyakixz replied Aug 16, 2010backtest v8.0 with jiva's setting at post #112. Alpari UK/Live, 2009.09.01 - 2010.08.11 image great result

Jiva Dragon
-
Taiyakixz replied Aug 13, 2010backtest with Alpari UK/Live... same setting as post 103 image but some period data is missing.....take care....
Jiva Dragon
-
Taiyakixz replied Aug 13, 2010backtest with Alpari UK/Demo... USDJPY 30m, setting with 1st post(but changed start time to 0) 2009.09.01 - 2010.08.11 image I downloaded the historical data from history center, but some period data is missing....If I refresh the chart, data ...
Jiva Dragon
-
Taiyakixz replied Aug 13, 2010When no price move with one bar, zero division occurs. change 2 lines double Total = OpenMinusClose / HighMinusLow; dPainBuffer[i] = Total; to if( HighMinusLow != 0 ) { double Total = OpenMinusClose / HighMinusLow; dPainBuffer[i] = Total; } else ...
Dividing in MQL