Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Trade Station to NT indicator translator

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

    Trade Station to NT indicator translator

    This is the better volume indicator for trade station. Does anyone have this translated for Ninja or would like to take a shot? I found it to be a pretty good tool..but I don't use Trade Station. There is also an attachment.

    Inputs: Color(Cyan), LowColor(Yellow), ClimaxColor(Red), ChurnColor(Green), ClimaxChurnColor(Magenta), LowChurnColor(White), AvgColor(Red);
    Variables: BarColor(Cyan);

    BarColor = Color;

    Value1 = V;
    Value2 = V*Range;
    If Range <> 0 then Value3 = V/Range;
    Value4 = Average(Value1,100);

    If Value1 = Lowest(Value1,20) then BarColor = LowColor;
    If Value2 = Highest(Value2,20) then BarColor = ClimaxColor;
    If Value3 = Highest(Value3,20) then BarColor = ChurnColor;
    If Value2 = Highest(Value2,20) and Value3 = Highest(Value3,20) then BarColor = ClimaxChurnColor;
    If Value3 = Lowest(Value3,20) then BarColor = LowChurnColor;

    Plot1(Value1,"Volume",BarColor);
    Plot2(Value4,"Avg",AvgColor);


    I'm not sure if this additional information is in the code above:

    "
    TradeStation EasyLanguage code for the Better Volume indicator is shown above. The typical volume histogram can be improved by coloring bars based on 5 criteria:
    • Climax volume - high volume and high range
    • High volume churn - high volume but low range
    • Climax volume plus High volume churn - both the above conditions (rare)
    • Low volume churn - low volume and high range
    • Low volume - just low volume but not a low volume churn bar"
    Attached Files

    #2
    RE: Better Volume Indicator is located

    The Better Volume Indicator is located under Indicators elsewhere on this forum.

    Originally posted by TD-Trader747 View Post
    This is the better volume indicator for trade station. Does anyone have this translated for Ninja or would like to take a shot? I found it to be a pretty good tool..but I don't use Trade Station. There is also an attachment.

    Inputs: Color(Cyan), LowColor(Yellow), ClimaxColor(Red), ChurnColor(Green), ClimaxChurnColor(Magenta), LowChurnColor(White), AvgColor(Red);
    Variables: BarColor(Cyan);

    BarColor = Color;

    Value1 = V;
    Value2 = V*Range;
    If Range <> 0 then Value3 = V/Range;
    Value4 = Average(Value1,100);

    If Value1 = Lowest(Value1,20) then BarColor = LowColor;
    If Value2 = Highest(Value2,20) then BarColor = ClimaxColor;
    If Value3 = Highest(Value3,20) then BarColor = ChurnColor;
    If Value2 = Highest(Value2,20) and Value3 = Highest(Value3,20) then BarColor = ClimaxChurnColor;
    If Value3 = Lowest(Value3,20) then BarColor = LowChurnColor;

    Plot1(Value1,"Volume",BarColor);
    Plot2(Value4,"Avg",AvgColor);


    I'm not sure if this additional information is in the code above:

    "
    TradeStation EasyLanguage code for the Better Volume indicator is shown above. The typical volume histogram can be improved by coloring bars based on 5 criteria:
    • Climax volume - high volume and high range
    • High volume churn - high volume but low range
    • Climax volume plus High volume churn - both the above conditions (rare)
    • Low volume churn - low volume and high range
    • Low volume - just low volume but not a low volume churn bar"

    Comment


      #3
      Welcome to our forum TD-Trader747!

      Please use this link to find variations of the Better Volume indicator in NinjaScript - http://www.ninjatrader-support2.com/...+volume&desc=1

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by cmoran13, 04-16-2026, 01:02 PM
      0 responses
      44 views
      0 likes
      Last Post cmoran13  
      Started by PaulMohn, 04-10-2026, 11:11 AM
      0 responses
      27 views
      0 likes
      Last Post PaulMohn  
      Started by CarlTrading, 03-31-2026, 09:41 PM
      1 response
      163 views
      1 like
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      98 views
      1 like
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      158 views
      2 likes
      Last Post CaptainJack  
      Working...
      X