I did that with my StackMan EA, though you have to enter the outer ranges yourself. I used BuyProjectedProfit & SellProjectedProfit, which could also be used as TP.SpiderX » Mon Jan 13, 2014 8:19 pm wrote:Hi dudest
Maybe it is wise to check if the stack trade price is too close to the target price.
for todays trade the stack trade price is too close to the target....fortunately it ended in a 5 pip win
Cheers
Since this EA uses the bands as TP, you can filter the stacking with something like...
Code: Select all
// for Buys
if (Upper_Band - Ask > BreakEvenPips)
{
Buy_Scale_In;
}
// for Sells
if (Bid - Lower_Band > BreakEvenPips)
{
Sell_Scale-in;
}
Have fun!
Radar =8^)