Someone can help me. I would like to change a little bit the Strategy - SmapleMACrossOver.
At
}
else if (State == State.DataLoaded)
{
smaFast = SMA(Fast);
smaSlow = SMA(Slow);
smaFast.Plots[0].Brush = Brushes.Goldenrod;
At SMASlow = SMA(Slow) .......i would like to multiply this SMA(slow) to move the sma to another place( or distance)...like SMA(slow) * 1.125, moving the SMA 25 points above the original point,,,
SMA(100)...would be SMA(100)*1.125..... so would Plot a line 12,5 points above the SMA(100) .
Thanks
Anderson

Comment