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

Help please?

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

    Help please?

    Anyone can help me converting the .eld file attached to Ninjatrader format?...will greatly appreciate it...it is a good indicator...giving signal 1 bar before Stochastics and showing divergence much better and sooner
    Attached Files

    #2
    Originally posted by Pavel View Post
    Anyone can help me converting the .eld file attached to Ninjatrader format?...will greatly appreciate it...it is a good indicator...giving signal 1 bar before Stochastics and showing divergence much better and sooner
    You would want to post eld exported to txt.
    Not everyone here has TradeStation or MultiCharts, so they can not see the code

    Comment


      #3
      neither do I...I got no idea how to do that... I am complete zero when it comes to computers...sorry...I think Multicharts can be tried for free..for so many days...

      Comment


        #4
        Originally posted by Pavel View Post
        neither do I...I got no idea how to do that...
        You could just post the author/website where you downloaded the eld. I think the author is Tams: http://www.traderslaboratory.com/for...wave-5666.html

        Basically this is the velocity of Stochastic SlowD times a multiplier plus 50. The text code can be downloaded at that site.

        Code:
        variables:
        oFastD( 0 ), oFastK( 0 ), oSlowD( 0 ), oSlowK( 0 ), 
        up_pt(0), dn_pt(0),
        TidalWave(0);
        
        
        Value1 = Stochastic( PriceH, PriceL, PriceC, SthLength, SmoothingLength1, 
         SmoothingLength2, SmoothingType, oFastK, oFastD, oSlowK, oSlowD ) ;
        
        TidalWave = ( oslowd - oslowd[1] ) * TidalWavemulti +50 ;

        Comment


          #5
          thank you...here is the code


          inputs:
          OverSold( 20 ), OverBought( 80 ),
          PriceC( (c+c[1])/2 ), PriceH( High ), PriceL( Low ),
          SmoothingLength1( 3 ), { used to slow FastK to FastD = SlowK }
          SmoothingLength2( 3 ), { used to slow FastD to SlowD }
          SmoothingType( 1 ), { pass in 1 for Original, 2 for Legacy }
          SthLength( 14 ),
          upCol(blue), DnCol(red),
          TidalWavemulti(2);

          variables:
          oFastD( 0 ), oFastK( 0 ), oSlowD( 0 ), oSlowK( 0 ),
          up_pt(0), dn_pt(0),
          TidalWave(0);


          Value1 = Stochastic( PriceH, PriceL, PriceC, SthLength, SmoothingLength1,
          SmoothingLength2, SmoothingType, oFastK, oFastD, oSlowK, oSlowD ) ;

          TidalWave = ( oslowd - oslowd[1] ) * TidalWavemulti +50 ;

          Plot1( OverBought, "OverBot" ) ;
          Plot2( OverSold, "OverSld" );
          plot3(50,"50") ;

          {== set oslowd color ==}

          plot4 (TidalWave, "TidalWave");

          if TidalWave > TidalWave[1] then
          SetPlotColor[1](4, upcol)
          else
          SetPlotColor[1](4, dncol);

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by Harry, 05-02-2018, 01:54 PM
          10 responses
          3,203 views
          0 likes
          Last Post tharton3  
          Started by cre8able, Yesterday, 01:16 PM
          3 responses
          11 views
          0 likes
          Last Post cre8able  
          Started by ChartTourist, Today, 08:22 AM
          0 responses
          6 views
          0 likes
          Last Post ChartTourist  
          Started by LiamTwine, Today, 08:10 AM
          0 responses
          2 views
          0 likes
          Last Post LiamTwine  
          Started by Balage0922, Today, 07:38 AM
          0 responses
          5 views
          0 likes
          Last Post Balage0922  
          Working...
          X