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

B line

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

  • NinjaTrader_Ben
    replied
    Hello,

    Over bought and over sold can be defined different ways so I put in 4 different colors splitting on 80, 50, and 20 to cover two different schools of thought.
    Attached Files
    Last edited by NinjaTrader_Ben; 01-07-2009, 08:16 AM.

    Leave a comment:


  • Jaap8242
    replied
    I don't know. You should ask Ninja Trader Ben who has written this code.
    But you could differentiate the overbought line from the oversold line by giving them different colors.

    Jaap

    Leave a comment:


  • jake28787
    replied
    B-LINE indicator

    is it possible to modify this indicator to plot a one color when oversold and another color when overbought

    Leave a comment:


  • Elliott Wave
    replied
    Originally posted by NinjaTrader_Ray View Post
    Hi Jaap,

    We have some new staff members that are ramping in supporting NinjaScript. I will assign this request as a training task for one of them. Give us a week or so to get this done.
    WOW, I'm really happy to hear this!

    Leave a comment:


  • Jaap8242
    replied
    Hello Ben, Thank you very much for your quick and nice translation of the TS code.
    The Bline works great in Ninja Trader.

    Jaap

    Leave a comment:


  • NinjaTrader_Ben
    replied
    Hello Jaap,


    Thank you for your EasyLanguage to NinjaScript translation request.

    Your translated indicator is attached.

    Import instructions:
    1. Download the file contained in this thread to your PC desktop
    2. From the Control Center window, select the menu File > Utilities > Import NinjaScript
    3. Select the downloaded file
    twtrader,

    No, DFull is not plotted or used within the calculation, but I did translate it. DFull is probably a leftover from a variation of the indicator calculation. It can be eliminated from the code.
    Attached Files
    Last edited by NinjaTrader_Ben; 10-14-2008, 02:19 PM.

    Leave a comment:


  • twtrader
    replied
    What is DFull used for? Is it also plotted ?

    I put your code in an indicator, but it does not seem complete.

    TW

    Originally posted by Jaap8242 View Post
    Hello,
    In Tradestation I use an indicator, the B-line, which is a kind of LT stochastic indicator. Originally developed by Judy McKeigan ( Buffy) at dacharts.com.
    I'm not familiar with the Ninja program code. Therefore I have copied the TS code of the B-line.


    Input: Price(Close), Length1(35), Length2(10), Length3(1), OverBought(80), OverSold(20),
    MidColor(White),OBOSColor(Red);
    Variables: KFast(0), KFull(0), DFull(0), LL(O), HH(0);
    LL = Lowest((High+Low)/2, Length1);
    HH = Highest((High+Low)/2, Length1);
    KFast = 100 * IFF(HH-LL=0,0,(((High+Low)/2) - LL)/(HH- LL));
    KFull = Average(KFast, Length2);
    DFull = Average(KFull, Length3);
    If KFull <= 80 and KFull >= 20 then
    Plot1(KFull,"Stoc",MidColor,Default,2) else
    Plot1(KFull,"Stoc",OBOSColor,Default,2);
    Plot3(OverBought, "OverBought");
    Plot4(OverSold, "OverSold");

    I hope that someone can translate this into Ninja code.

    Jaap
    Last edited by twtrader; 08-01-2008, 04:09 PM. Reason: Deleted attachment

    Leave a comment:


  • NinjaTrader_Ray
    replied
    Hi Jaap,

    We have some new staff members that are ramping in supporting NinjaScript. I will assign this request as a training task for one of them. Give us a week or so to get this done.

    Leave a comment:


  • Jaap8242
    started a topic B line

    B line

    Hello,
    In Tradestation I use an indicator, the B-line, which is a kind of LT stochastic indicator. Originally developed by Judy McKeigan ( Buffy) at dacharts.com.
    I'm not familiar with the Ninja program code. Therefore I have copied the TS code of the B-line.


    Input: Price(Close), Length1(35), Length2(10), Length3(1), OverBought(80), OverSold(20),
    MidColor(White),OBOSColor(Red);
    Variables: KFast(0), KFull(0), DFull(0), LL(O), HH(0);
    LL = Lowest((High+Low)/2, Length1);
    HH = Highest((High+Low)/2, Length1);
    KFast = 100 * IFF(HH-LL=0,0,(((High+Low)/2) - LL)/(HH- LL));
    KFull = Average(KFast, Length2);
    DFull = Average(KFull, Length3);
    If KFull <= 80 and KFull >= 20 then
    Plot1(KFull,"Stoc",MidColor,Default,2) else
    Plot1(KFull,"Stoc",OBOSColor,Default,2);
    Plot3(OverBought, "OverBought");
    Plot4(OverSold, "OverSold");

    I hope that someone can translate this into Ninja code.

    Jaap

Latest Posts

Collapse

Topics Statistics Last Post
Started by PhillT, Today, 02:16 PM
2 responses
3 views
0 likes
Last Post PhillT
by PhillT
 
Started by Kaledus, Today, 01:29 PM
3 responses
9 views
0 likes
Last Post NinjaTrader_Jesse  
Started by frankthearm, Yesterday, 09:08 AM
14 responses
47 views
0 likes
Last Post NinjaTrader_Clayton  
Started by gentlebenthebear, Today, 01:30 AM
2 responses
14 views
0 likes
Last Post gentlebenthebear  
Started by PaulMohn, Today, 12:36 PM
2 responses
17 views
0 likes
Last Post PaulMohn  
Working...
X