if(GetCurrentAsk() < customIndi.ExposedPrice) // which is the similar to High[0]
{
EnterLongStop(TradeSize, customIndi.ExposedPrice, "LEstop");
}
if(GetCurrentAsk() < customIndi.ExposedPrice)
{
EnterLongStop(TradeSize, customIndi.ExposedPrice, "LEstop");
}
else if(GetCurrentAsk() >= CustomIndi.ExposedPrice)
{
EnterLong(TradeSize, "LEmkt");
}
How to fix this when using range bars in particular but also to verify it as correct with all bar types. I am using CalculateOnBarClose = true; as well.
Cheers!
- CableTrader007

Comment