Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Stop Volume Indicator..can someone code it?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Stop Volume Indicator..can someone code it?

    here is the easy code for the Stop Volume indicator..does anybody want to create it for NT? it is a variation of the better volume indicator, created by the same person




    Inputs: TextColor(White), Space(True), StopAlert(True),
    SpaceMulti(1), TextSpaceMulti(0.75);
    Variables: OffsetBottom(0), OffsetTop(0), OffsetInput(0);

    If Space = True then begin
    Value1 = Average(Range,10)*SpaceMulti;
    Plot1(H+Value1,"TopSpace",Tool_Black,0,0);
    Plot2(L-Value1,"BottomSpace",Tool_Black,0,0);
    End;

    OffsetBottom = 0;
    OffsetTop = 0;
    OffsetInput = Average(Range,10)*TextSpaceMulti;

    Condition1 = Ticks > Ticks[1] and Range < Range[1] and L < L[1];
    Condition2 = Ticks > Ticks[1] and Range < Range[1] and H > H[1];

    If Condition1 then begin
    OffsetBottom = OffsetBottom+OffsetInput;
    Value1 = Text_New(D,T,L-OffsetBottom,"Stop");
    Value2 = Text_SetColor(Value1,TextColor);
    Value3 = Text_SetStyle(Value1,2,2);
    If StopAlert = True then begin
    Alert("Stopping Volume Low");
    End;
    End;
    If Condition2 then begin
    OffsetTop = OffsetTop+OffsetInput;
    Value1 = Text_New(D,T,H+OffsetTop,"Stop");
    Value2 = Text_SetColor(Value1,TextColor);
    Value3 = Text_SetStyle(Value1,2,2);
    If StopAlert = True then begin
    Alert("Stopping Volume High");
    End;
    End;

    #2
    Gregory,

    As a last resort you can also try one of these 3rd party NinjaScript Consultants: http://www.ninjatrader.com/webnew/pa...injaScript.htm
    Josh P.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    601 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    347 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    103 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    559 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    558 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X