It just hammers trends , something this simple shouldn't work ?

Looks awesome for sure, too bad the EUR/JPY is eliminated from the competition this month, hopefully it will be in sync next month and seeking revengeeltax100 » Thu Mar 12, 2015 6:14 pm wrote:This is just going mental
It just hammers trends , something this simple shouldn't work ?
You might want to have a think about that question. It makes no sense. He's using fixed lots. If he was using 0.1 lots he would have made $110. What % is that?Oritzbaba » Thu Mar 12, 2015 7:55 am wrote:
What is the size of your demo account. I want to know the percentage achieved by the $11 amount.
Thanks.
It takes years of experience to come up with something this simple and elegant. Pipcruiser is a very clever individual.eltax100 » Thu Mar 12, 2015 8:14 am wrote:This is just going mental
It just hammers trends , something this simple shouldn't work ?
Steve is too apparently.SteveHopwood » Thu Mar 12, 2015 9:59 am wrote:It takes years of experience to come up with something this simple and elegant. Pipcruiser is a very clever individual.eltax100 » Thu Mar 12, 2015 8:14 am wrote:This is just going mental
It just hammers trends , something this simple shouldn't work ?
Oritzbaba » Thu Mar 12, 2015 2:25 am wrote:ariel » Tue Mar 10, 2015 5:59 pm wrote:
Hello
i use wn1 /w1/ d1/
Default
0.01 lot
my profit is U$ 11 this week
Ariel
What is the size of your demo account. I want to know the percentage achieved by the $11 amount.
Thanks.
Code: Select all
//ATR for sl/tp
static datetime OldAtrBarTime = 0;
if (OldAtrBarTime != iTime(Symbol(), AtrTimeFrame, 0) )
{
OldAtrBarTime = iTime(Symbol(), AtrTimeFrame, 0);
AtrVal = GetAtr(Symbol(), AtrTimeFrame, AtrPeriod, 1) * factor;
if (!CloseEnough(AtrSlMultiplier, 0))
MainTradeStopLoss = AtrVal * AtrSlMultiplier;
if (!CloseEnough(AtrTpMultiplier, 0))
MainTradeTakeProfit = AtrVal * AtrTpMultiplier;
if (!CloseEnough(AtrBeMultiplier, 0))
BreakEvenPips = AtrVal * AtrBeMultiplier;
if (!CloseEnough(AtrJsMultiplier, 0))
JumpingStopPips = AtrVal * AtrJsMultiplier;
}//if (OldAtrBarTime != iTime(Symbol(), TradingTF, 0) )
Code: Select all
//ATR for sl/tp
if (AtrPeriod > 0)
{
static datetime OldAtrBarTime = 0;
if (OldAtrBarTime != iTime(Symbol(), AtrTimeFrame, 0) )
{
OldAtrBarTime = iTime(Symbol(), AtrTimeFrame, 0);
AtrVal = GetAtr(Symbol(), AtrTimeFrame, AtrPeriod, 1) * factor;
if (!CloseEnough(AtrSlMultiplier, 0))
MainTradeStopLoss = AtrVal * AtrSlMultiplier;
if (!CloseEnough(AtrTpMultiplier, 0))
MainTradeTakeProfit = AtrVal * AtrTpMultiplier;
if (!CloseEnough(AtrBeMultiplier, 0))
BreakEvenPips = AtrVal * AtrBeMultiplier;
if (!CloseEnough(AtrJsMultiplier, 0))
JumpingStopPips = AtrVal * AtrJsMultiplier;
}//if (OldAtrBarTime != iTime(Symbol(), TradingTF, 0) )
}//if (AtrPeriod > 0)