Jump to content

guspertiz

Members
  • Posts

    28
  • Joined

  • Last visited

Posts posted by guspertiz

  1. pure MQ4, for further work

     

    #property indicator_separate_window

    #property indicator_buffers 3

    #property indicator_color1 Green

    #property indicator_color2 Red

    #property indicator_color3 Silver

    //---- input parameters

    extern int FN=34;

    extern double Deviation=3.0;

    extern int FastEMA=5;

    extern int SlowEMA=13;

    //---- buffers

    double ExtMapBuffer1[];

    double ExtMapBuffer2[];

    double ExtMapBuffer3[];

    double ExtMapBuffer4[];

    //+------------------------------------------------------------------+

    //| Custom indicator initialization function |

    //+------------------------------------------------------------------+

    int init()

    {

    //---- indicators

    IndicatorBuffers(4);

    SetIndexStyle(0,DRAW_HISTOGRAM,STYLE_SOLID,3);

    SetIndexStyle(1,DRAW_HISTOGRAM,STYLE_SOLID,3);

    SetIndexStyle(2,DRAW_LINE,STYLE_DOT);

    SetIndexBuffer(1,ExtMapBuffer2);

    SetIndexBuffer(0,ExtMapBuffer1);

    SetIndexBuffer(2,ExtMapBuffer3);

    SetIndexBuffer(3,ExtMapBuffer4);

    if(FN<2)

    FN=2;

    if(Deviation<0)

    Deviation=1;

    if(FastEMA<1)

    FastEMA=1;

    if(SlowEMA<1)

    SlowEMA=1;

    IndicatorShortName("FNCD ("+FN+","+FastEMA+","+SlowEMA+")");

    SetIndexDrawBegin(0,FN+SlowEMA);

    SetIndexDrawBegin(1,FN+SlowEMA);

    SetIndexLabel(0,"FN Up");

    SetIndexLabel(1,"FN Down");

    SetIndexEmptyValue(0,0);

    SetIndexEmptyValue(1,0);

    IndicatorDigits(4);

    //----

    return(0);

    }

     

    double NormalizedX(int F_period, int i)

    {

    double result;

    double A;

    double S;

    double C;

    if(i<Bars-F_period)

    {

    C=Close;

    A=iMA(NULL,0,F_period,0,MODE_SMA,PRICE_CLOSE,i);

    S=iStdDev(NULL,0,F_period,MODE_SMA,0,PRICE_CLOSE,i);

    result=(C-A)/S;

    }

    else

    result=0;

    return(result);

    }

     

    double FisherNormalizedX(int F_period, double Dev, int i)

    {

    double result;

    double X;

    if(i<Bars-F_period && Dev>0)

    {

    X=NormalizedX(F_period,i)/Dev;

    if(X>0.99)

    X=0.99;

    if(X<-0.99)

    X=-0.99;

    result=0.5*MathLog((1+X)/(1-X));

    }

    else

    result=0;

    return(result);

    }

     

    //+------------------------------------------------------------------+

    //| 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;

    for(int i=0; i<limit; i++)

    ExtMapBuffer4=FisherNormalizedX(FN,Deviation,i);

    for(i=0; i<limit; i++)

    ExtMapBuffer3=iMAOnArray(ExtMapBuffer4,Bars,SlowEMA,0,MODE_EMA,i);

    for(i=0; i<limit; i++)

    {

    if(iMAOnArray(ExtMapBuffer4,Bars,FastEMA,0,MODE_EMA,i)>ExtMapBuffer3)

    {

    ExtMapBuffer1=iMAOnArray(ExtMapBuffer4,Bars,FastEMA,0,MODE_EMA,i);

    ExtMapBuffer2=0;

    }

    else

    {

    ExtMapBuffer1=0;

    ExtMapBuffer2=iMAOnArray(ExtMapBuffer4,Bars,FastEMA,0,MODE_EMA,i);

    }

    }

    //---- done

    return(0);

    }

    //+------------------------------------------------------------------+

  2. http://www.ziddu.com/download/12240659/FPMYogeshBhavsar815199.rar.html

    http://www.ziddu.com/download/12232661/FDMYogeshBhavsar815199.rar.html

    those are the two links of system FPM and FDM its client id protected can you just remove the client id and make it a normal system where every one can use it

    thanking you

     

    It's Forex Profit Monster

    depositfiles.com/files/9n59un0sa
  3. http://andrei.moy.su/_fr/1/s6908426.jpg

     

    Range Oscillator

    The Range Oscillator automatically searches for areas of Support and Resistance that are potential reversal areas - and alerts when price touches these levels.

    Using complex cycle-identification algorithm, the Range Oscillator identifies the beginning of new cycles, allowing you to join the trend earlier than other traders.

    Our complex algorithm identify high-probability turning points present early trading signals. Our algorithms work in any pair and time frame, useful in all trading styles.

    Range Oscillator can also be used as a confirmation for Chart Patterns and other signals.

    DeltaForce Indicator

    Powerful Indicator Identifies Tops and Bottoms

    DeltaForce Indicator is truly a remarkable indicator. It automatically searches and identifies exact Tops and Bottoms of price, allowing you to enter at the absolute

    low and generate great profits. Using complex calculations the DeltaForce Indicator pin-points the best trading signals. Examples:

     

     

    hxxp://depositfiles.com/files/7vc9kioyi

  4. http://andrei.moy.su/_fr/1/s7950073.jpg

     

    Description:TrendlessOS (oscillator bestrendovosti)

     

    Designed to evaluate the real overbought / oversold market.

    Bars represent the indicator changes color when its value becomes greater than or equal to 60%, 80% and 100% level of overbought / oversold levels.

    Initially, D. DiNapoli describes precisely a line graph of the indicator, but in my opinion, the interpretation of a color histogram, where the intersection of one of the critical levels to change color column, more clearly. Although, for the more conservative users, I have written in the configuration change of the type "histogram / graph.

    Strategies that use this indicator can be found in the book Joe DiNapoli "Trading with DiNapoli levels.

    Do not quote the code description, as in the source, I ordered a comment to each line.

     

     

    Russian
    hxxp://codebase.mql4.com/ru/6581
    

  5. Re: Ultimate Swing Trader 2.0 Forex Edition

     

    Indicators need npsubust.dll (file)......something like The “System 2” of HVMM

    HVMM Custom Indicator Software

    The backbone of the High Velocity Market Master - you'll be given an all-access pass to these custom programmed indicators for forex, futures, stock, and options markets FOREVER.

    /www.highvelocitymarketmaster*com/

     

    http://s13.radikal.ru/i186/1001/91/aa3c1c3b6ed2.jpg

     

     

    now cured Ultimate Swing Trader 2.

    download

    hxxp://depositfiles.com/files/6qlyny3re

  6. Re: Trend Scanner Indicator

     

    ForexCurrencyIndex

     

    http://andrei.moy.su/forex3/forexcurrencyindex-header.gif

     

    As the Forex market fluctuates, there are always some currencies showing strength or weakness across the board, meaning that they're systematically gaining or losing ground against all the other currencies.

    Knowing when one particular currency is going through a relevant period of strength or weakness can give you an edge on your trading. For example: if the EURO is today the strongest currency across the board, then you know that if you search for long (buy) opportunities on any EURO cross there are high chances that your trade will reach your profit target levels smoothly and swiftly because you're betting for the strongest currency at that precise moment.

    That's how the Forex Currency Index advanced indicator can help you. It will tell you with deadly accuracy which currencies are pushing hard and which ones are being beaten on all fronts!

     

    Russian download site, here is a picture to show you how to download

    file.php?id=2111&t=1

     

    To download

    http://slil.ru/28539252

  7. Currency MeterV5

     

    http://andrei.moy.su/_ld/1/117.png

     

    Many people are wondering why they cannot make money trading forex while others are building wealth every single day. The answer is simple: These successful traders have found the secret formula to forex trading. Trading forex is not gambling. It requires knowledge and the tools to trade it. The only way to gain in forex is to trade contrary to what you've learned in the books. Most traders will disagree with me on that statement, but that's ok. Most traders are trading in the dark. They have no clue where the real market is really heading. They rely on useless indicators and expensive software. They are paying hundreds of dollars every month in subscription fees and are wasting thousands of dollars in their trading accounts

     

     

    http://andrei.moy.su/nzdjpy-meter.png

     

    95%of everything you read in forex books are useless. There are hundreds of forex forums and thousands of trading systems. All of them are complete garbage. Everywhere you turn on the internet you will see somebody is trying to sell the latest trading systems. These ads are full of beautiful words, but no results. I have designed a rock solid trading system that has been proven time after time to be the best in the industry.

     

    Unlike other indicators, the currency meter allows you to monitor all currency pairs in one panel and help you make the best trading decision. knowing when and what to trade is what make the meter so powerful. No other tolls provide such flexibility and accuracy in the market. The meter will examine the market and show you what each pair is doing given you an unfair advantage in the market.

     

     

    Here are some of the features:

     

    Monitor 24 currency pairs

    Email and sound alert

    Information Center

    Multi time frame capability

    Fully user customize

    Change indicator setting

    Color coded for easy reading

    Build for the Free MT4 platform.

    Free Upgrade

     

     

    Program consist of of 3 tools:

     

    A currency meter (CM5-METER)

    Manual Trading system (CM5-SYSTEM)

    CM5-ROBOT

     

     

    Site of the developer the reference

    http://currencymeter.com/

     

    DOWNLOAD Currency MeterV5

    http://depositfiles.com/files/lks0iyvc5 

  8. http://andrei.moy.su/_ld/3/382.jpg

     

    TS Raptor Explosion - a trading strategy is used in their work and MACD indicators BANDS, combined in one indicator Raptor Explosion. This indicator is also used in the advisor TREND RAPTOR v2.0. Use of the system is very simple. Following instructions of the pop-up window, you enter the market or get out of it. Signal box tells you about the offensive since the opening of positions BUY and SELL with an indication of strength of a trend and the forces of "explosion" speed quotes, as well as gives you a distinct command to withdraw from the market and the closing of open positions BUY and SELL. The strategy works for any currency pair and any time frame.

     

     

    DOWNLOAD trading system TS Raptor Explosion

    http://depositfiles.com/files/ynml6nmkb

     

    Note...pdf is in Russian.

  9. Easy Trend Visualizer MT4 and MT5

     

    Easy Trend Visualization in MT5 - added an MT5 version of the Easy Trend Visualizer MetaTrader indicator to the site today. It has almost the same functionality as an MT4 version. The conversion process was rather painful with this indicator and it was the first time I really hated new MQL5 and MT5. Not only the code became more bulky after the conversion, but also the MT5 indicator display system wouldn’t allow doing the same things that MT4 allowed to do easily, in sense of the visualization. It resulted in two main disadvantages compared to old indicator version:

     

    * More indicator buffers to do the same things

    * The support/resistance lines have ugly vertical appendages

     

    On the bright side, I’ve finally found out that the order of elements in the indicator buffers can be inverted (to make it the same as in MT4) by simply calling ArraySetAsSeries() function in the OnInit() event handler. That can really help in the indicator development.

     

    http://s48.radikal.ru/i120/1001/81/0dc08dccc87b.gif

     

     

    Easy Trend Visualizer MT4 — this indicator does exactly what its name is telling you. It shows where the trend begins, where it ends and where there is no trend at all. It's based on standard MetaTrader ADX (Average Direction Movement Index) indicators and works quite fast. Easy Trend Visualizer displays itself in the main chart window. Available for MT4 and MT5 platforms.

    Input parameters:

     

    * ADXperiod1 (default = 10) — period of the first ADX indicator.

    * ADXperiod2 (default = 14) — period of the second ADX indicator.

    * ADXperiod3 (default = 20) — period of the third ADX indicator.

    You should be warned that this indicator redraws the current bar. So, it's not very wise to enter a position based on the signal of the current bar. Previous bars aren't redrawn and can be used as the safe entry signals. Although Easy Trend Visualizer is quite accurate there are many false signals. But they shouldn't be a real problem since a stop-loss level can minimize losses. You should also exit positions if the trend is over.

     

     

     

     

     

    Easy Trend Visualizer for MetaTrader 4 in .mq4

    http://www.earnforex.com/mt4-forex-indicators/EasyTrendVisualizer.mq4

    Easy Trend Visualizer for MetaTrader 5 in .mq5

    http://www.earnforex.com/mt5-forex-indicators/EasyTrendVisualizer.mq5

  10. On any pair. The schedule 4-chjaasovoj.

    Indicator Fibonachchi FiboCalc_v31.

    One of successful workings out of indicator Fibonachchi is FiboCalc.

    Indicator Fibonachchi FiboCalc_v31 functions:

     

    - Day prices High and Low.

    - The prices of previous days High and Low

    - A trend direction (Trend was down / Trend was up)

    - Level of desirable sale.

    - Level of statement of feet-lossa.

    - 3 purposes of a capture of profit.

     

    http://i062.radikal.ru/1001/03/20e46b01b0df.gif

     

    How to interpret indicator Fibonachchi FiboCalc_v31.

    fibocalc3

    1. As soon as the price was fixed below the Price of closing of a previous day / Prev. Day Close. As a rule it occurs already by the end ????????? sessions, to the beginning of the European session.

    2. The indicator shows level of sale Sell Level, whence it is possible to sell.

    3. Also on the schedule it is displayed StopLoss Level (level of feet-lossa).

    4. Profit Target 1, Profit Target 2, Profit Target 3, - the purpose on which can cover a part of positions.

     

    Indicator Fibonachchi FiboCalc parametres

    - Level of a previous day of closing / Prev. Day Close – golden colour.

    - A floor price of day / Day Low – is dark-claret colour.

    - The price of opening of a previous day / Prev. Day Open – yellow colour

    - A ceiling price of day / Day High – dark green.

     

    hxxp://slil.ru/28483365

×
×
  • Create New...