protected double GetSpread(Dictionary quotes)
{
double retVal = 0.0;
double VIX = quotes["^VIX"].Item2;
if (VIX > 25 && VIX < 30)
retVal = .5;
else if (VIX > 20 && VIX < 25)
retVal = 1.25;
else if (VIX < 20)
retVal = 2.5;
return retVal;
}
Quote from Nine_Ender:
You dropped 9 points here. Rarely do any of your trades make 9 points. Its telling you something, Nitro. The money is talking to you, but you aren't listening.