Skip This Ad >>
 
Register
Forgotten your password?
The Facebook Platform
Forex-TSD - Powered by vBulletin
Loading search...
Advanced search
  • Home
  • Forums
    Free sections Exclusive sections All sections
  • Register
    Create new account
  • More Recent
    Latest Threads Today's Posts
  • Rankings
    Most popular threads this month Most popular threads created this month Most linked threads this month Most active users Most reputed users
  • Calendar
  • Advertising
  • Others
    Blogs Toolbar
  • Help
    Contact Us FAQ
  • Premium Forum
  • Home
  • Forum
  • Downloads
  • Expert Advisors - Metatrader 4
  • EuroX2.ex4 any comments?

Thread: EuroX2.ex4 any comments?



  • LinkBack
    • LinkBack URL LinkBack URL
    • About LinkBacks About LinkBacks
    •  
    • Bookmark & Share
    • Digg this Thread!
    • Add Thread to del.icio.us
    • Bookmark in Technorati
    • Tweet this thread
  • Thread Tools
    • Show Printable Version
    • Email this Page…
    • Subscribe to this Thread…
  • Display
    • Switch to Hybrid Mode
    • Switch to Threaded Mode
Results 81 to 90 of 205
Page 9 of 21 FirstFirst Previous ... 789101119 ... Next LastLast
41 41 Attachment(s)

  1. 11-06-2006 09:37 AM #81
    jodetter's Avatar
    jodetter
    jodetter is offline Junior Member
    Points: 8,658, Level: 10
    Level completed: 97%, Points required for next Level: 42
    Overall activity: 0%
    Join Date
    Mar 2006
    Posts
    15
    Points
    8,658
    Level
    10
    Achievements:
    Veteran500 Experience Points
    Here is the code - make sure you compare it with the 10Point3 EA code!


    #property copyright "Copyright © 2006, Expert Advisors"
    #property link "http://forex-soft.netfirms.com"

    extern int MaxTrades = 4;
    extern int Pips = 5;
    extern double TakeProfit = 40;
    extern double TrailingStop = 20;
    double var_100 = 0;
    int var_108 = 10;
    int var_112 = 1;
    int var_116 = 3;
    int var_120 = 0;
    double var_124 = 10;
    double var_132 = 10;
    double var_140 = 10;
    double var_148 = 9.715;
    int var_156 = 2005;
    int var_160 = 1;
    int var_164 = 2050;
    int var_168 = 12;
    int var_172 = 22;
    int var_176 = 30;
    int var_180 = 0;
    int var_184 = 12;
    int var_188 = 0;
    int var_192 = 0;
    int cnt = 0;
    int slippage = 5;
    double stoploss = 0;
    double takeprofit = 0;
    double bprice = 0;
    double sprice = 0;
    double var_236 = 0;
    double lots = 0;
    int var_252 = 0;
    int var_256 = 0;
    bool var_260 = true;
    double var_264 = 0;
    int var_272 = 0;
    double var_276 = 0;
    int var_284 = 0;
    int var_288 = 0;
    double var_292 = 0;
    double var_300 = 0;
    double var_308 = 0;
    double var_316 = 0;
    string var_324 = "";
    string var_332 = "";
    double Lots;

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

    double Lots()
    {
    Lots = NormalizeDouble(AccountFreeMargin() / 5 / 10000,1);
    if (Lots < 0.1) Lots = 0.1;
    if (Lots > 100.0) Lots = 100;
    return(Lots);
    }

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

    int init()
    {
    if (IsTesting())
    {
    ObjectCreate("text_object",OBJ_LABEL,0,0,0);
    ObjectSet("text_object",OBJPROP_XDISTANCE,4);
    ObjectSet("text_object",OBJPROP_YDISTANCE,15);
    ObjectSetText("text_object","(c) ExpertAdvisors, http://forex-soft.netfirms.com",8,"Verdana",Gold);
    }
    else
    {
    Alert("Demo-version runs under Strategy Tester,\nnot on account - ON HISTORY ONLY !\n\nSee full version at http://forex-soft.netfirms.com");
    }
    return(0);
    }

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

    int deinit()
    {
    return(0);
    }

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

    int start()
    {
    if (IsTesting())
    {
    if (var_188 == 1)
    {
    if (var_180 != 0)
    var_236 = MathCeil(AccountBalance() * var_184 / 10000);
    else
    var_236 = Lots();
    }
    else
    {
    if (var_180 != 0)
    var_236 = MathCeil(AccountBalance() * var_184 / 10000) / 10;
    else
    var_236 = Lots();
    }
    if (var_236 > 100.0) var_236 = 100;
    var_192 = 0;
    for (cnt = 0; cnt < OrdersTotal(); cnt++)
    {
    OrderSelect(cnt,SELECT_BY_POS,MODE_TRADES);
    if ((OrderSymbol() == Symbol())) var_192++;
    }
    if (var_192 < 1)
    {
    if (TimeYear(CurTime()) < var_156) return(0);
    if (TimeMonth(CurTime()) < var_160) return(0);
    if (TimeYear(CurTime()) > var_164) return(0);
    if (TimeMonth(CurTime()) > var_168) return(0);
    }
    if ((Symbol() == "EURUSD")) var_316 = var_124;
    if ((Symbol() == "GBPUSD")) var_316 = var_132;
    if ((Symbol() == "USDJPY")) var_316 = var_148;
    if ((Symbol() == "USDCHF")) var_316 = var_140;
    if (var_316 == 0.0) var_316 = 5;
    if (var_272 > var_192)
    {
    for (cnt = OrdersTotal(); cnt >= 0; cnt--)
    {
    OrderSelect(cnt,SELECT_BY_POS,MODE_TRADES);
    var_252 = OrderType();
    if ((OrderSymbol() == Symbol()))
    {
    if (var_252 == 0) OrderClose(OrderTicket(),OrderLots(),OrderClosePri ce(),slippage,Blue);
    if (var_252 == 1) OrderClose(OrderTicket(),OrderLots(),OrderClosePri ce(),slippage,Red);
    return(0);
    }
    }
    }
    var_272 = var_192;
    if (var_192 >= MaxTrades) var_260 = false; else var_260 = true;
    if (var_264 == 0.0)
    {
    for (cnt = 0; cnt < OrdersTotal(); cnt++)
    {
    OrderSelect(cnt,SELECT_BY_POS,MODE_TRADES);
    var_252 = OrderType();
    if ((OrderSymbol() == Symbol()))
    {
    var_264 = OrderOpenPrice();
    if (var_252 == 0) var_256 = 2;
    if (var_252 == 1) var_256 = 1;
    }
    }
    }
    if (var_192 < 1)
    {
    var_256 = 3;
    if (iMACD(NULL,0,14,26,9,PRICE_CLOSE,MODE_MAIN,0) > iMACD(NULL,0,14,26,9,PRICE_CLOSE,MODE_MAIN,1)) var_256 = 2;
    if (iMACD(NULL,0,14,26,9,PRICE_CLOSE,MODE_MAIN,0) < iMACD(NULL,0,14,26,9,PRICE_CLOSE,MODE_MAIN,1)) var_256 = 1;
    if (var_120 == 1)
    {
    if (var_256 == 1)
    {
    var_256 = 2;
    }
    else
    {
    if (var_256 == 2)
    {
    var_256 = 1;
    }
    }
    }
    }
    for (cnt = OrdersTotal(); cnt >= 0; cnt--)
    {
    OrderSelect(cnt,SELECT_BY_POS,MODE_TRADES);
    if ((OrderSymbol() == Symbol()))
    {
    if (OrderType() == OP_SELL)
    {
    if (TrailingStop > 0.0)
    {
    if (OrderOpenPrice() - Ask >= (TrailingStop + Pips) * Point)
    {
    if (OrderStopLoss() > Ask + Point * TrailingStop)
    {
    OrderModify(OrderTicket(),OrderOpenPrice(),Ask + Point * TrailingStop,OrderClosePrice() - TakeProfit * Point - TrailingStop * Point,800,Purple);
    return(0);
    }
    }
    }
    }
    if (OrderType() == OP_BUY)
    {
    if (TrailingStop > 0.0)
    {
    if (Bid - OrderOpenPrice() >= (TrailingStop + Pips) * Point)
    {
    if (OrderStopLoss() < Bid - Point * TrailingStop)
    {
    OrderModify(OrderTicket(),OrderOpenPrice(),Bid - Point * TrailingStop,OrderClosePrice() + TakeProfit * Point + TrailingStop * Point,800,Yellow);
    return(0);
    }
    }
    }
    }
    }
    }
    var_276 = 0;
    var_284 = 0;
    var_288 = 0;
    var_292 = 0;
    var_300 = 0;
    for (cnt = 0; cnt < OrdersTotal(); cnt++)
    {
    OrderSelect(cnt,SELECT_BY_POS,MODE_TRADES);
    if ((OrderSymbol() == Symbol()))
    {
    var_284 = OrderTicket();
    if (OrderType() == OP_BUY) var_288 = 0;
    if (OrderType() == OP_SELL) var_288 = 1;
    var_292 = OrderClosePrice();
    var_300 = OrderLots();
    if (var_288 == 0)
    {
    if (OrderClosePrice() < OrderOpenPrice()) var_276 = var_276 - (OrderOpenPrice() - OrderClosePrice()) * OrderLots() / Point;
    if (OrderClosePrice() > OrderOpenPrice()) var_276 = var_276 + (OrderClosePrice() - OrderOpenPrice()) * OrderLots() / Point;
    }
    if (var_288 == 1)
    {
    if (OrderClosePrice() > OrderOpenPrice()) var_276 = var_276 - (OrderClosePrice() - OrderOpenPrice()) * OrderLots() / Point;
    if (OrderClosePrice() < OrderOpenPrice()) var_276 = var_276 + (OrderOpenPrice() - OrderClosePrice()) * OrderLots() / Point;
    }
    }
    }
    var_276 = var_276 * var_316;
    var_332 = "Profit: $" + DoubleToStr(var_276,2) + " +/-";
    if ((var_192 >= MaxTrades - var_116) && (var_112 == 1))
    {
    if (var_276 >= var_108)
    {
    OrderClose(var_284,var_300,var_292,slippage,Yellow );
    var_260 = false;
    return(0);
    }
    }
    if (!IsTesting())
    {
    if (var_256 == 3)
    var_324 = "No conditions to open trades";
    else
    var_324 = " ";
    }
    if ((var_256 == 1) && var_260)
    {
    if ((Bid - var_264 >= Pips * Point) || (var_192 < 1))
    {
    sprice = Bid;
    var_264 = 0;
    if (TakeProfit == 0.0) takeprofit = 0; else takeprofit = sprice - TakeProfit * Point;
    if (var_100 == 0.0) stoploss = 0; else stoploss = sprice + var_100 * Point;
    if (var_192 != 0)
    {
    lots = var_236;
    cnt = 1;
    while (cnt <= var_192)
    {
    if (MaxTrades > 12)
    lots = NormalizeDouble(lots * 1.5,1);
    else
    lots = NormalizeDouble((lots + lots),1);
    cnt++;
    }
    }
    else
    {
    lots = var_236;
    }
    if (lots > 100.0) lots = 100;
    OrderSend(Symbol(),OP_SELL,lots,sprice,slippage,st oploss,takeprofit,0,0,0,Red);
    return(0);
    }
    }
    if ((var_256 == 2) && var_260)
    {
    if ((var_264 - Ask >= Pips * Point) || (var_192 < 1))
    {
    bprice = Ask;
    var_264 = 0;
    if (TakeProfit == 0.0) takeprofit = 0; else takeprofit = bprice + TakeProfit * Point;
    if (var_100 == 0.0) stoploss = 0; else stoploss = bprice - var_100 * Point;
    if (var_192 != 0)
    {
    lots = var_236;
    cnt = 1;
    while (cnt <= var_192)
    {
    if (MaxTrades > 12)
    lots = NormalizeDouble(lots * 1.5,1);
    else
    lots = NormalizeDouble((lots + lots),1);
    cnt++;
    }
    }
    else
    {
    lots = var_236;
    }
    if (lots > 100.0) lots = 100;
    OrderSend(Symbol(),OP_BUY,lots,bprice,slippage,sto ploss,takeprofit,0,0,0,Blue);
    return(0);
    }
    }
    }
    return(0);
    }
    • Share
      • Share this post on
      • Digg
      • Del.icio.us
      • Technorati
      • Twitter
    For every person who thinks they can fly there will be some fool willing to follow them leap out of the window!
    Reply With Quote Reply With Quote

  2. 11-06-2006 10:46 AM #82
    bluto's Avatar
    bluto
    bluto is offline Senior Member
    Points: 103,843, Level: 46
    Level completed: 60%, Points required for next Level: 1,957
    Overall activity: 0%
    Join Date
    Sep 2006
    Posts
    632
    Points
    103,843
    Level
    46
    Achievements:
    Recommendation First ClassVeteran500 Experience Points
    Perhaps this is why the phantoms that sell this thing don't have any contact info on their web site.
    • Share
      • Share this post on
      • Digg
      • Del.icio.us
      • Technorati
      • Twitter
    Reply With Quote Reply With Quote

  3. 11-06-2006 11:14 AM #83
    sdln28's Avatar
    sdln28
    sdln28 is offline Member
    Points: 5,981, Level: 8
    Level completed: 53%, Points required for next Level: 519
    Overall activity: 0%
    Join Date
    Oct 2006
    Location
    Florida
    Posts
    52
    Points
    5,981
    Level
    8
    Achievements:
    Veteran500 Experience Points

    Cool

    Yes, there is no way to contact them - even when you buy the EA like I did - on your receipt you get the contact info for the people who clear the payment. This was the first EA I have purchased and now I will be more careful in the future.
    • Share
      • Share this post on
      • Digg
      • Del.icio.us
      • Technorati
      • Twitter
    Reply With Quote Reply With Quote

  4. 11-06-2006 08:42 PM #84
    daraknor's Avatar
    daraknor
    daraknor is offline Senior Member
    Points: 87,201, Level: 43
    Level completed: 3%, Points required for next Level: 4,399
    Overall activity: 0%
    Join Date
    Oct 2006
    Location
    Portland, OR USA
    Posts
    996
    Points
    87,201
    Level
    43
    Achievements:
    Recommendation First ClassVeteran500 Experience Points
    Quote Originally Posted by jodetter
    Well, that is exactly what the forex-soft seller has been doing with the EuroX2 EA!!
    You people are so "BLACK and WHITE"! You fail to see the shades of GREY even when it is pointed out to you, like I did earlier in this thread when I inform everyone that this Euro X2 EA was nothing more than the freely available 10point3. EA.
    I will look into this, I have been challenging copyright theft in another thread: Community Help: Protecting copyright

    Next time, if you don't know what you are talking about it is best just not to say anything and come out with these stupid statements as the one quoted above. And if you want to know about reverse engineering etc and software companies selling other peoples stuff, well just do some research on Microsoft - they have reversed engineered many software.....
    MS didn't reverse engineer anything. They used BSD license code for TCP/IP, and usually did 'partnerships' where the partner goes out of business and MS gets all of their code. Check the "about" info on Internet Explorer, or read the strings in winsock.dll 000001A9 "BSD Socket API for Windows". When I worked for MS Win95 Support, I took the handle POSOS, which stands for P.o.S. OS.

    Microsoft did (somewhat) legal things, but stealing compiling copyrighted code from other people is not one of those things. I will look into this seller.
    • Share
      • Share this post on
      • Digg
      • Del.icio.us
      • Technorati
      • Twitter
    Reply With Quote Reply With Quote

  5. 11-07-2006 12:14 AM #85
    FX4Eva
    FX4Eva is offline Junior Member
    Points: 3,588, Level: 5
    Level completed: 99%, Points required for next Level: 12
    Overall activity: 0%
    Join Date
    Nov 2006
    Posts
    1
    Points
    3,588
    Level
    5
    Achievements:
    Veteran500 Experience Points

    I know any EA

    Theres an EA i bought off ebay that you might like, its had some impressive results on my meta trader and they have a nice statement its located here


    http://cgi.ebay.com/ws/eBayISAPI.dll...6812&rd=1&rd=1
    • Share
      • Share this post on
      • Digg
      • Del.icio.us
      • Technorati
      • Twitter
    Reply With Quote Reply With Quote

  6. 11-07-2006 01:03 AM #86
    daraknor's Avatar
    daraknor
    daraknor is offline Senior Member
    Points: 87,201, Level: 43
    Level completed: 3%, Points required for next Level: 4,399
    Overall activity: 0%
    Join Date
    Oct 2006
    Location
    Portland, OR USA
    Posts
    996
    Points
    87,201
    Level
    43
    Achievements:
    Recommendation First ClassVeteran500 Experience Points
    That is so horrible it is funny. I love the fact that you don't even say *anything* about the actual EA.
    • Share
      • Share this post on
      • Digg
      • Del.icio.us
      • Technorati
      • Twitter
    Reply With Quote Reply With Quote

  7. 11-07-2006 01:27 AM #87
    YupYup
    YupYup is offline Senior Member
    Points: 5,604, Level: 8
    Level completed: 19%, Points required for next Level: 896
    Overall activity: 0%
    Join Date
    Sep 2006
    Location
    SoCal
    Posts
    205
    Points
    5,604
    Level
    8
    Achievements:
    Veteran500 Experience Points
    Its probably another EA that they took from here to sell, as sad as it is... O'well, the way i see it is; Karma is a *****! I've come to terms with this.
    • Share
      • Share this post on
      • Digg
      • Del.icio.us
      • Technorati
      • Twitter
    Cheers,

    B
    Reply With Quote Reply With Quote

  8. 11-07-2006 02:12 AM #88
    bluto's Avatar
    bluto
    bluto is offline Senior Member
    Points: 103,843, Level: 46
    Level completed: 60%, Points required for next Level: 1,957
    Overall activity: 0%
    Join Date
    Sep 2006
    Posts
    632
    Points
    103,843
    Level
    46
    Achievements:
    Recommendation First ClassVeteran500 Experience Points
    Quote Originally Posted by YupYup
    Its probably another EA that they took from here to sell, as sad as it is... O'well, the way i see it is; Karma is a *****! I've come to terms with this.
    I think it's that guy that sells FX-EA. Looks like the same thing to me. Same address too.
    • Share
      • Share this post on
      • Digg
      • Del.icio.us
      • Technorati
      • Twitter
    Reply With Quote Reply With Quote

  9. 11-11-2006 08:25 PM #89
    pipsqueak2
    pipsqueak2 is offline Senior Member
    Points: 11,889, Level: 13
    Level completed: 69%, Points required for next Level: 411
    Overall activity: 0%
    Join Date
    Nov 2006
    Posts
    123
    Points
    11,889
    Level
    13
    Achievements:
    Veteran500 Experience Points
    Quote from this page:-
    "Expert advisors leaders IN ELITE SECTION win more than 3000 pips (30000$
    investing 1 lot every time) almost every month"

    Where is this ELITE SECTION. Am new to this Forum, first post.

    Pip
    • Share
      • Share this post on
      • Digg
      • Del.icio.us
      • Technorati
      • Twitter
    Reply With Quote Reply With Quote

  10. 11-12-2006 07:41 AM #90
    daraknor's Avatar
    daraknor
    daraknor is offline Senior Member
    Points: 87,201, Level: 43
    Level completed: 3%, Points required for next Level: 4,399
    Overall activity: 0%
    Join Date
    Oct 2006
    Location
    Portland, OR USA
    Posts
    996
    Points
    87,201
    Level
    43
    Achievements:
    Recommendation First ClassVeteran500 Experience Points
    If you subscribe a link appears after you sign in. No subscription, no link. There is a ton of forward testing and some modified versions of EA that aren't available other places. I signed up for the free demo and decided it was valuable enough to keep. Depending on what does or does not get tested I might drop the elite subscription since I'm a starving programmer and all.
    • Share
      • Share this post on
      • Digg
      • Del.icio.us
      • Technorati
      • Twitter
    Reply With Quote Reply With Quote

Page 9 of 21 FirstFirst Previous ... 789101119 ... Next LastLast
41 41 Attachment(s)

Quick Navigation Expert Advisors - Metatrader 4 Top
  • Site Areas
  • Settings
  • Private Messages
  • Subscriptions
  • Who's Online
  • Search Forums
  • Forums Home
  • Forums
  • Announcements
    1. Announcements Blog
  • Exclusive Forum
    1. Elite Section
  • Forex Press
    1. Analytics
    2. Articles
    3. Success Stories
  • Discussion Areas
    1. General Discussion
    2. Metatrader 4
      1. Metatrader 3
    3. Metatrader 5
    4. Post and compare Trades
    5. Setup Questions
    6. Suggestions for Trading Systems
    7. Documentation
    8. Strategy Trader
  • Non Related Discussions
  • Downloads
    1. Indicators - Metatrader 4
      1. Indicators - Metatrader 3
      2. Indicators - Metatrader 5
    2. Manual trading systems
    3. Expert Advisors - Metatrader 4
      1. TSD Expert Advisors
      2. Expert Advisors - Metatrader 5
      3. Expert Advisors - Metatrader 3
    4. Tools and utilities
    5. Tools and utilities - Strategy Trader
  • Trading systems
    1. CatFx50
    2. Brain Systems
    3. Ema Cross
    4. Harmonic trading
    5. The "XO"-Method
    6. Phoenix
    7. Dolly
    8. Digital Filters
    9. Martingale/Average Cost and Hedging
  • Automated Trading
    1. News/Signal Trading
    2. FX Signals Marketplaces
  • Commercial systems
    1. Commercial Trading Systems and indicators
    2. Raw Commercial Ideas
    3. Evaluate Commercial Ideas
  • Brokers
    1. Metatrader brokers
  • Programming
    1. MetaTrader Programming
    2. TradeStation Programming
  • Training
    1. Metatrader
      1. Metatrader 4 mql 4 - Development course
        1. Questions
        2. Lessons
    2. TradeStation

» Popular Tags

analysis backtest best broker breakout broker charts close all orders script copier data window day trading decompile ex4 ea ma EUR/USD eurusd exit strategies expert expert adviser expert advisor financial

» Rankings

Hottest Threads

1  Eurusd/gbpusd
2  CatFx50
3  10points 3.mq4
4  FxOpen
5  Multi Timeframe Indicators

view more
 

Most Popular Threads

1  Multi Timeframe In...
2  CatFx50
3  Something interesting pl...
4  The Murrey Math Trading System
5  Show Us Your Best

view more

» FEATURED BROKERS



« Previous Thread | Next Thread »

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. new eurox2 sl v 1.2 EA Alejandro Galindo
    By che in forum Expert Advisors - Metatrader 4
    Replies: 31
    Last Post: 04-10-2007, 12:54 PM
  2. Data & Comments
    By cja in forum Setup Questions
    Replies: 5
    Last Post: 08-19-2006, 10:58 AM

Tags for this Thread

  • EuroX2,
  • eurox2.ex4,
  • EuroX2_sl,
  • EuroX2 Ea,
  • *.ex4,
  • ea ex4,
  • eurx2,
  • forex ex4,
  • eurox2dmbsys,
  • EA EuroX2

View Tag Cloud

Bookmarks

Bookmarks
  • Submit to Digg Digg
  • Submit to del.icio.us del.icio.us
  • Submit to Technorati Technorati
  • Submit to Furl Furl
  • Submit to StumbleUpon StumbleUpon
  • Submit to Reddit Reddit
  • Submit to Facebook Facebook
  • Submit to Blink List Blink List
  • Submit to Google Google
  • Submit to Yahoo My Web Yahoo My Web
  • Submit to Twitter Twitter

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
  • BB code is On
  • Smilies are On
  • [IMG] code is On
  • [VIDEO] code is On
  • HTML code is Off
  • Trackbacks are On
  • Pingbacks are On
  • Refbacks are On

Forum Rules

Forums
  • Free sections
  • Exclusive sections
  • All sections
Calendar Social Networking
Premium Forum
  • Elite Membership
  • Advanced Membership
All times are GMT. The time now is 07:20 PM.
Terms and Conditions
PRIVACY POLICY
Powered by vBulletin® Version 4.1.11
Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.
Search Engine Friendly URLs by vBSEO 3.6.0 ©2011, Crawlability, Inc.
Digital Point modules: Sphinx-based search

Subscribe today and get...

Elite Membership
  • Elite Trading Systems
  • Propietary Indicators
  • Private Performance Reports
  • Elite EAs Source Code
  • 24/5 Trading Support!
Advanced Membership
  • Elite benefits, plus:
  • - MT4 & MT5 cutting-edge indicators.
  • - Advanced propieatry indicators and its source codes.
  • - Free conversion of MT4 indicatiors to MT5.
View our best offer!