Jump to content

bomdila

⭐ V.I.P.
  • Posts

    286
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by bomdila

  1. Maybe we can make a development contest of similar strategies...?

    [spoiler=DSRBuy]

    using System;
    using System.ComponentModel;
    using NinjaTrader.Data;
    
    namespace NinjaTrader.Strategy
    {
       [Description("Enter the description of your strategy here")]
       public class DSRBuy : Strategy
       {
           protected override void Initialize()
           {
               CalculateOnBarClose=true;
           }
    
           protected override void OnBarUpdate()
           {
               if (CrossAbove(SMA(CCI(240), 1), SMA(CCI(240), 7), 1))
               {
                   EnterLong(DefaultQuantity, "");
               }
               if (CrossBelow(SMA(CCI(240), 1), SMA(CCI(240), 7), 1))
               {
                   ExitLong("", "");
               }
           }
       }
    }
    
    

     

     

     

    [spoiler=DSRSell]

    using System;
    using System.ComponentModel;
    using NinjaTrader.Data;
    
    namespace NinjaTrader.Strategy
    {
       [Description("Enter the description of your strategy here")]
       public class DSRSell : Strategy
       {
           protected override void Initialize()
           {
               CalculateOnBarClose=true;
           }
    
           protected override void OnBarUpdate()
           {
               if (CrossBelow(SMA(CCI(240), 1), SMA(CCI(240), 7), 1))
               {
                   EnterShort(DefaultQuantity, "");
               }
               if (CrossAbove(SMA(CCI(240), 1), SMA(CCI(240), 7), 1))
               {
                   ExitShort("", "");
               }
           }
       }
    }
    
    

     

     

    Please share educated DSR

  2. Anyone have the new "DSR" strategy already educated or ready to be educated?

     

    Cheers!

     

    Mick

     

    Here it's ready to be educated

     

    DSR.rar (21.00KB)

     

    https://www.sendspace.com/file/lcbioy

    ttps://mega.nz/#!5cRwCbCR!RCqsrD7UU4AIPkfJ2fGRnxYcq8KNJ_oGJBHJAPSkPt0

     

    DSRBuy - DAX Stop Runner Strategy developed for DAX traders (also works on other high volatility instruments) This strategy aims to benefit from profit taking as well as excellent tool for breakouts and breakdowns to quickly benefit from stop loss orders getting triggered)

     

    DSRSell - DAX Stop Runner Strategy developed for DAX traders (also works on other high volatility instruments) This strategy aims to benefit from profit taking as well as excellent tool for breakouts and breakdowns to quickly benefit from stop loss orders getting triggered)

  3. Hi traders be careful OFA have some bugs,

    if you use the trader size block OFA (in my below pic block set >99) the block are totally wrong!!

     

    http://s19.postimg.org/ak1vg5par/ofa_pic.png

     

    regards

     

    I hope, you configured and managed to make OFA & Noft work together. Could you share the template

     

    Thanks

  4. I found that, being an Elite member of BMT, I could post my indicators that I spend many hours developing and get constructive feedback on them from like-minded members.

    Seeing them shared on forums such as this is very disheartening. It shows no respect for hard-working developers like me.

    Yatamanka, can you please tell me your BMT username?

     

    It looks like, he asked username of BMT so as to complain MIKE to block that username.

×
×
  • Create New...