Code: Select all
ssp= ssp1-(1*sublevels); //Next 20 down Code: Select all
ssp= ssp1-(0*sublevels); //Next 20 downCode: Select all
ssp= ssp1-(1*sublevels); //Next 20 down Code: Select all
ssp= ssp1-(0*sublevels); //Next 20 downYou would think so, wouldn't you, as 0*sublevels = 0.jiraiye » Mon Jan 26, 2015 12:07 pm wrote:I believe that Line 3292 of the latest version 2r should read as the following:
currently it is coded as follow:Code: Select all
ssp= ssp1-(1*sublevels); //Next 20 down
Saw this when my trend trades were consistently given a erroneous stop loss.Code: Select all
ssp= ssp1-(0*sublevels); //Next 20 down
If it were only so simple. Prove with manual trades over a month and people will listen.add this feature and the robot will never fail
nonlinear » Tue Jan 27, 2015 3:31 am wrote:If it were only so simple. Prove with manual trades over a month and people will listen.add this feature and the robot will never fail
Code: Select all
//Trend Multi trades
if (comment == TrendMultiTradeComment)
if (!CloseEnough([b]WaveTakeProfit[/b], 0) )
{
take = price + (TrendMultiTakeProfit / factor);
HiddenTakeProfit = take;
}//if (!CloseEnough(TrendMultiTakeProfit, 0) )There is no way to make ea trading better than human. But with HGB Steve is very close to thisnonlinear » Tue Jan 27, 2015 5:31 am wrote:If it were only so simple. Prove with manual trades over a month and people will listen.add this feature and the robot will never fail
so true. all of his systems are amazing. and nothing will replace a humansponn » Wed Jan 28, 2015 10:56 am wrote:There is no way to make ea trading better than human. But with HGB Steve is very close to thisnonlinear » Tue Jan 27, 2015 5:31 am wrote:If it were only so simple. Prove with manual trades over a month and people will listen.add this feature and the robot will never fail
Manual trades - I believe that there is many traders who made more pips in last month that in last few years before HGI (except Nanningbob and maybe few others successfull manual traders even before HGI).
Nice spot. Thanks.trendinator » Wed Jan 28, 2015 9:50 am wrote:line 1869, should read the same as the comment on line 1873 right?
Code: Select all
//Trend Multi trades if (comment == TrendMultiTradeComment) if (!CloseEnough([b]WaveTakeProfit[/b], 0) ) { take = price + (TrendMultiTakeProfit / factor); HiddenTakeProfit = take; }//if (!CloseEnough(TrendMultiTakeProfit, 0) )