as not a programmer its not easy to realize a "simple" Strategy. So i have 2 Questions

1. I create an Indicator who plots my CandleOutlineBrushes[0] = Brushes.XY; (different Colours). Can i check the last 10 Bars, if they are White or Yellow? Like this
if (ShortSignal && ShortCounter < 2)
{
if (Check last 10 Bars if one or more white or yellow)
Counter + 1;
else
EnterShort();
Counter +1;
}
2. I have a second Indicator Name: namespace NinjaTrader.NinjaScript.Indicators._Dira / public class _DiraVolume3 : Indicator. In this Indicator i set public double _DiraVollasthighVol;
And now i want the Value of _DiraVollasthighVol in my Strategy.
i try this double try1 = _DiraVolume3._DiraVollasthighVol;

i try any way i know 
Comment