Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Vegas Wealth Builder

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

    Vegas Wealth Builder

    Has anyone had any experience w/ the Vegas Wealth Builder indicator (based on FIB tick intervals and 24/28 EMA)?

    #2
    Can someone please convert this Metatrader script for Ninja.

    Thank you.




    //+------------------------------------------------------------------+
    //| VegasCurrencyDaily.mq4 |
    //| "Vegas" |
    //| |
    //+------------------------------------------------------------------+
    #property copyright "Vegas"
    #property link ""

    #property indicator_chart_window
    #property indicator_buffers 8
    #property indicator_color1 Green
    #property indicator_color2 Blue
    #property indicator_color3 Red
    #property indicator_color4 Red
    #property indicator_color5 Red
    #property indicator_color6 Red
    #property indicator_color7 Red
    #property indicator_color8 Red
    //---- input parameters
    extern bool Alerts=true;
    extern int RiskModel=1;
    extern int MA1=24;
    extern int MA2=28;
    //---- buffers
    double ExtMapBuffer1[];
    double ExtMapBuffer2[];
    double ExtMapBuffer3[];
    double ExtMapBuffer4[];
    double ExtMapBuffer5[];
    double ExtMapBuffer6[];
    double ExtMapBuffer7[];
    double ExtMapBuffer8[];
    //+------------------------------------------------------------------+
    //| Custom indicator initialization function |
    //+------------------------------------------------------------------+
    int init()
    {
    //---- indicators
    SetIndexStyle(0,DRAW_LINE);
    SetIndexBuffer(0,ExtMapBuffer1);
    SetIndexStyle(1,DRAW_LINE);
    SetIndexBuffer(1,ExtMapBuffer2);
    SetIndexStyle(2,DRAW_LINE);
    SetIndexBuffer(2,ExtMapBuffer3);
    SetIndexStyle(3,DRAW_LINE);
    SetIndexBuffer(3,ExtMapBuffer4);
    SetIndexStyle(4,DRAW_LINE);
    SetIndexBuffer(4,ExtMapBuffer5);
    SetIndexStyle(5,DRAW_LINE);
    SetIndexBuffer(5,ExtMapBuffer6);
    SetIndexStyle(6,DRAW_LINE);
    SetIndexBuffer(6,ExtMapBuffer7);
    SetIndexStyle(7,DRAW_LINE);
    SetIndexBuffer(7,ExtMapBuffer8);
    //----
    return(0);
    }
    //+------------------------------------------------------------------+
    //| Custor indicator deinitialization function |
    //+------------------------------------------------------------------+
    int deinit()
    {
    //----

    //----
    return(0);
    }
    //+------------------------------------------------------------------+
    //| Custom indicator iteration function |
    //+------------------------------------------------------------------+
    int start()
    {
    int limit;
    int counted_bars=IndicatorCounted();
    //---- check for possible errors
    if(counted_bars<0) return(-1);
    //---- last counted bar will be recounted
    if(counted_bars>0) counted_bars--;
    limit=Bars-counted_bars;
    //---- main loop
    for(int i=0; i<limit; i++)
    {
    //---- ma_shift set to 0 because SetIndexShift called abowe
    ExtMapBuffer1[i]=iMA(NULL,0,24,0,MODE_EMA,PRICE_CLOSE,i);
    ExtMapBuffer2[i]=iMA(NULL,0,28,0,MODE_EMA,PRICE_CLOSE,i);

    //Model #1 89,144,233
    if(RiskModel==1)
    {
    ExtMapBuffer3[i]=ExtMapBuffer2[i]+89*Point;
    ExtMapBuffer4[i]=ExtMapBuffer2[i]+144*Point;
    ExtMapBuffer5[i]=ExtMapBuffer2[i]+233*Point;

    ExtMapBuffer6[i]=ExtMapBuffer2[i]-89*Point;
    ExtMapBuffer7[i]=ExtMapBuffer2[i]-144*Point;
    ExtMapBuffer8[i]=ExtMapBuffer2[i]-233*Point;
    }

    //Model #2 144,233,377
    if(RiskModel==2)
    {
    ExtMapBuffer3[i]=ExtMapBuffer2[i]+144*Point;
    ExtMapBuffer4[i]=ExtMapBuffer2[i]+233*Point;
    ExtMapBuffer5[i]=ExtMapBuffer2[i]+377*Point;

    ExtMapBuffer6[i]=ExtMapBuffer2[i]-144*Point;
    ExtMapBuffer7[i]=ExtMapBuffer2[i]-233*Point;
    ExtMapBuffer8[i]=ExtMapBuffer2[i]-377*Point;
    }

    //Model #3 233,377,610
    if(RiskModel==3)
    {
    ExtMapBuffer3[i]=ExtMapBuffer2[i]+233*Point;
    ExtMapBuffer4[i]=ExtMapBuffer2[i]+377*Point;
    ExtMapBuffer5[i]=ExtMapBuffer2[i]+610*Point;

    ExtMapBuffer6[i]=ExtMapBuffer2[i]-233*Point;
    ExtMapBuffer7[i]=ExtMapBuffer2[i]-377*Point;
    ExtMapBuffer8[i]=ExtMapBuffer2[i]-610*Point;
    }

    //Model #4 377,610,987
    if(RiskModel==4)
    {
    ExtMapBuffer3[i]=ExtMapBuffer2[i]+377*Point;
    ExtMapBuffer4[i]=ExtMapBuffer2[i]+610*Point;
    ExtMapBuffer5[i]=ExtMapBuffer2[i]+987*Point;

    ExtMapBuffer6[i]=ExtMapBuffer2[i]-377*Point;
    ExtMapBuffer7[i]=ExtMapBuffer2[i]-610*Point;
    ExtMapBuffer8[i]=ExtMapBuffer2[i]-987*Point;
    }

    Comment("\nRISK MODEL #",RiskModel," (1-4)\n\nEMA24 - ",ExtMapBuffer1[limit],"\nEMA28 - ",ExtMapBuffer2[limit],
    "\n\nF+1 - ",ExtMapBuffer3[limit],"\nF+2 - ",ExtMapBuffer4[limit],
    "\nF+3 - ",ExtMapBuffer5[limit],"\n\nF-1 - ",ExtMapBuffer6[limit],
    "\nF-2 - ",ExtMapBuffer7[limit],"\nF-3 - ",ExtMapBuffer8[limit]);
    }

    //+--------------------------------------------------------------------------+
    //- ALERTS PlaySound("alert.wav"); -
    //+--------------------------------------------------------------------------+
    if(Alerts)
    {
    if(Close[i]==ExtMapBuffer1[i] || Close[i]==ExtMapBuffer2[i])
    {
    PlaySound("alert.wav");
    }
    if(Close[i]==ExtMapBuffer3[i] || Close[i]==ExtMapBuffer4[i] || Close[i]==ExtMapBuffer5[i])
    {
    PlaySound("alert.wav");
    }
    if(Close[i]==ExtMapBuffer6[i] || Close[i]==ExtMapBuffer7[i] || Close[i]==ExtMapBuffer8[i])
    {
    PlaySound("alert.wav");
    }
    }

    //---- done

    //----

    //----
    return(0);
    }
    //+------------------------------------------------------------------+

    Comment


      #3
      Thanks for sharing - if nobody takes it up for conversion, you can contact a NinjaScript consultant as a last resort - http://www.ninjatrader.com/webnew/pa...injaScript.htm
      BertrandNinjaTrader Customer Service

      Comment


        #4
        Was anyone ever able to get a NT version of this? Thanks!

        Comment


          #5
          I have not looked at what your MT4 indicator exactly does, but i have attached something i programmed a long time ago, hope it helps.
          Attached Files

          Comment


            #6
            Originally posted by toulouse-lautrec View Post
            I have not looked at what your MT4 indicator exactly does, but i have attached something i programmed a long time ago, hope it helps.
            This is what I'm looking for. Thanks very much for sharing!

            Comment


              #7
              very very very very very very very veryyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy yyyyyyyyyyy thanks mr toluse
              i was looking for this indicator from 3 mounth ago

              Comment


                #8
                Originally posted by toulouse-lautrec View Post
                I have not looked at what your MT4 indicator exactly does, but i have attached something i programmed a long time ago, hope it helps.
                MR PRO
                IF YOU CAN DO THIS TOO

                Comment


                  #9
                  Originally posted by RaminRostami View Post
                  Not sure what you mean, Rami. The Supertrend has already been ported over to Ninja in several variations.

                  Comment


                    #10
                    that supertrend is base on atr
                    i want supertrand base on MA envelope
                    thanks dear

                    Comment


                      #11
                      vegas fib tunnel

                      Does anyone have this indicator that works for NT7? The NT6.5 version works great, but I can not find a version that works with NT7.

                      Comment


                        #12
                        it works on NT7 too
                        vegas i mean

                        Comment


                          #13
                          Thanks for the heads up on NT7.

                          Comment


                            #14
                            Updating Vegas Tunnel for NT8

                            If someone could update this indicator ( Vegas Tunnel, zip file posted by someone else below in the thread) for NT8, that would be awesome.

                            Many thanks in advance

                            Comment


                              #15
                              Hello,

                              I just wanted to post that this item was converted and is in the file sharing section here: https://ninjatrader.com/support/foru...=7&linkid=1151

                              I do want to mention that conversions are not a service that our support can generally provide, but in this situation, a task was created at product managements discretion.

                              I look forward to being of further assistance.
                              JesseNinjaTrader Customer Service

                              Comment

                              Latest Posts

                              Collapse

                              Topics Statistics Last Post
                              Started by RookieTrader, Today, 09:37 AM
                              3 responses
                              15 views
                              0 likes
                              Last Post NinjaTrader_ChelseaB  
                              Started by kulwinder73, Today, 10:31 AM
                              0 responses
                              5 views
                              0 likes
                              Last Post kulwinder73  
                              Started by terofs, Yesterday, 04:18 PM
                              1 response
                              23 views
                              0 likes
                              Last Post terofs
                              by terofs
                               
                              Started by CommonWhale, Today, 09:55 AM
                              1 response
                              4 views
                              0 likes
                              Last Post NinjaTrader_Erick  
                              Started by Gerik, Today, 09:40 AM
                              2 responses
                              7 views
                              0 likes
                              Last Post Gerik
                              by Gerik
                               
                              Working...
                              X