Trying to plot some colour between an EMA and an external indicator .. it almost works .. but the shading does not quite line up ..
ref: https://ninjatrader.com/support/foru...71-vwap-in-nt8
In my script I have the following ..
public class TestMAs : Indicator
{
//indicators
VWAP8 myVWAP8;
<snip>
protected override void OnBarUpdate()
{
Region myreg = Draw.Region(this, "my zone", CurrentBar, 0, myVWAP8, EMA(100), null, Brushes.Silver, 50, 0);
<snip>
Am assuming my plot is a bar out ? dunno .. any ideas ?
Cheers


Comment