I think Ninjatrader will eventually be perfect for me but atm, i have 2 questions;
1. I programmed the following for the:
minimum of a stock's SMA (10dayvolume) and the SMA of its(50dayvolume). the code is as follows:
Add(PeriodType.Day, 1);
double avgVolume = Math.Min ((SMA(Volumes[1],10)[0]) , (SMA(Volumes[1],50)[0]));
and I cant get it to print the volume number.
Ive been trading for 12 years, and I've decided for the sake of saving msyelf the many heart attackes per year, I am going to use full automation for my risk, profit and strategy parameters. This is one that I will be using.
I'm sure im doing missing something that is right in front of my nose, but any questions/answers or tips that would lead me to some progress would be awesome....
Thanks in adavnce,
Andrew

Comment