However, every time the colors paint, under the angles defined, which are deleted right now, it enters a long or short position ever time it paints. Can I create a condition where it EntersLong, but only on during the first instance of the .EMAup, and EnterShort at the .Emadown. All input would be much appreciated
Thanks,
// Condition set 1
if (EMA_Colors(, , ).EMAup[0] != Close[0])
{
EnterLong(DefaultQuantity, "EnterLong");
}
// Condition set 2
if (EMA_Colors(, , ).EMAdown[0] != Close[0])
{
EnterShort(DefaultQuantity, "EnterShort");

Still do not know how to omit further paintings of my vertical line, isolate the first painting. You mentioned a change of direction in the LongShort strategy, but that was based on cross overs. The strat I'm trying to achieve deals with the first occasion. Any other ideas. I am making progress, I promise. 
Comment