Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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 AttiM, 02-14-2024, 05:20 PM
    10 responses
    179 views
    0 likes
    Last Post jeronymite  
    Started by ghoul, Today, 06:02 PM
    0 responses
    7 views
    0 likes
    Last Post ghoul
    by ghoul
     
    Started by Barry Milan, Yesterday, 10:35 PM
    6 responses
    19 views
    0 likes
    Last Post Barry Milan  
    Started by DanielSanMartin, Yesterday, 02:37 PM
    2 responses
    13 views
    0 likes
    Last Post DanielSanMartin  
    Started by DJ888, 04-16-2024, 06:09 PM
    4 responses
    13 views
    0 likes
    Last Post DJ888
    by DJ888
     
    Working...
    X