Page 21 of 24 FirstFirst ... 11 19 20 21 22 23 ... LastLast
Results 201 to 210 of 233
Like Tree50Likes

Something interesting

This is a discussion on Something interesting within the General Discussion forums, part of the Trading Forum category; Three Typical Candles Martingale - expert for MetaTrader 5 One of the Three Typical Candles versions - the trading engine ...

      
   
  1. #201
    member mql5's Avatar
    Join Date
    May 2013
    Posts
    2,322
    Blog Entries
    1637

    Three Typical Candles Martingale

    Three Typical Candles Martingale - expert for MetaTrader 5

    One of the Three Typical Candles versions - the trading engine was rewritten, martingale was added.
    The EA does not have Stop Loss, Take Profit, or Trailing.
    The EA calculates Typical prices for bars # 1, # 2 and # 3 (or # 0, # 1 and # 2) on the specified ' Working timeframe' timeframe. The EA holds a series of positions in one direction. Upon receipt of a signal, if there are positions opposite to the signal, these opposite positions will be closed.
    Metatrader 5 / Metatrader 4 for MQL5 / MQL4 articles preview preview
    Trading blogs || My blog

  2. #202
    Senior Member matfx's Avatar
    Join Date
    Sep 2013
    Location
    Malaysia
    Posts
    1,178
    Blog Entries
    114
    Follow matfx On Twitter

    Kuasaforex Signal System For Metatrader 5

    Hi,

    Here are the Kuasaforex Signal Trading System setup for MetaTrader 5.

    For metatrader 5, i preferred to use AllPivot_v4.6 MT5 to replace Fibo Pivot_v2 in MT4 version. For filter signal, instead of using Kuskus_StarlightV2 we use Schaff Trix Trend Cycle MT5.

    The trading methodology is the same.

    For buy signal, BBandstop and heiken ashi must be green, and confirm by Schaff Trix Trend Cycle.

    For sell signal, BBandstop and heiken ashi must be orange, and confirm by Schaff Trix Trend Cycle.

    For exit, use the pivot point indicator for target or exit when BBandstop / heiken ashi change signal.

    Based on my past experience this system work best for 1hr chart. Lower chart may get many false signal. Avoid trading during news announcement.

    All the indicators and template are attached.

    This is example of Kuasaforex Signal Trading System, in dark mode :

    Something interesting-gbpusdh1_kuasaforex-dark.png

    This is example of Kuasaforex Signal Trading System, in light mode :

    Something interesting-gbpusdh1_kuasaforex_light.png
    Attached Files Attached Files
    Follow my official trading theregulartrader blog

  3. #203
    Senior Member matfx's Avatar
    Join Date
    Sep 2013
    Location
    Malaysia
    Posts
    1,178
    Blog Entries
    114
    Follow matfx On Twitter
    Quote Originally Posted by matfx View Post
    sq Dynamic Breakout box indicator, an indicator to assist traders to identify trade setup of price breakout. The trading manual as follow :



    And the indicator setting :

    Code:
    extern int    BoxLength                       = 22;
    extern int    BoxTimeFrame                  = 15;
    extern int    BoxRange                        = 30; // fixed box range, when AutoBoxRange is false
    extern bool   AutoBoxRange                 = true;// when true, will use AutoBoxRangeDailyATRfactor*daily_ATR_value as the BoxRange value;
    extern int    AutoBoxRangeDailyATRperiod = 30;
    extern double AutoBoxRangeDailyATRfactor = 0.20;
    extern int    BoxBufferPips                   = 5; // add this amount to the Box Yellow and Magenta lines
    extern int    DaysBack                        = 100; // calendar days back; 0=full history
    // CAUTION when setting DaysBack to 0: with large history data, this is likely to lock-up MT4 for a few dozen seconds per chart!
    
    extern int    MinBarsClosedOutsideBO     = 2; // number of bars to close outside the BO levels to signal trades; 0 means "enter immediately on Breakout"
    
    extern bool   ShowDisplayPanel = true; // false will hide the display panel
    
    // TPs and SL levels "fib lines" settings:
    // when a TP is >=20, it is considered as FIXED PIPs, <20 is a factor of the box size (EXCLUDING bufferpips);
    extern bool   ShowTPLevels     = true; // false will hide the TP levels
    extern bool   ShowTPLevelsOnLastBoxOnly = true; // to limit the TP levels to the last Box only
    extern double TP1              = 0.618;
    extern double TP2              = 1.382;
    extern double TP3              = 2.618;
    extern double TP4              = 4.236;
    extern double TP5              = 5.854;
    extern double TP6              = 7.472;
    extern double TP7              = 9.090;
    extern double TP8              = 11.708;
    extern double TP9              = 14.326;
    extern color  TPLevelColor     = Gray;
    extern double TP_is_pips_above = 20; // any TP input above this value is considered as a FIXED PIP value, below is a FACTOR of the box size (including bufferpips);
    
    extern int    BuySignalArrowCode   = 2;
    extern color  BuySignalArrowColor  = Yellow;
    extern int    SellSignalArrowCode  = 2;
    extern color  SellSignalArrowColor = Red;
    
    extern bool   SignalMail       = false;
    extern bool   SignalAlert      = false;
    
    extern bool   CreateStatisticsFile       = false;
    extern int    BreakoutBoxFontSize        = 12;
    extern color  BreakoutBoxColor           = C'0,170,170';
    extern color  BreakoutBoxContColor       = DarkSlateGray;
    extern bool   BreakoutBoxContFullColored = true; // true will draw a full rectangle rather than an "empty" rectangle
    extern color  BreakoutBoxContPriceColor  = DarkSlateGray;
    extern color  BreakoutPriceColor         = C'0,170,170';
    extern int    BreakoutPriceWidth         = 2;
    extern color  StatsColor                 = C'0,220,220';
    extern color  StatsBGColor               = Teal;
    extern int    StatsCorner                = 1; // 0=upper-left, 1=upper-right, 2=lower-left, 3=lower-right
    extern bool   BoxVerticalLineDelimiter   = false; // false to remove vertival Box delimiter lines;
    extern color  BoxVerticalLineColor       = DarkSlateGray;
    extern int    SwingLabelsFontSize        = 12;
    extern color  SwingLabelsColor           = DarkOrange;
    extern string Fonts                      = "Arial";
    
    extern int debug = 0;
    This indicator, sqDynamicBreakoutBox still useful and great for trading breakout.

    Something interesting-gbpusdm15_sqdynamicbreakoutbox.png
    Follow my official trading theregulartrader blog

  4. #204
    Member Ace Trader Pro's Avatar
    Join Date
    Dec 2020
    Location
    South East Asia
    Posts
    98
    Blog Entries
    1
    I try to trade using SQbreakoutbox indicator.

    Before London session open, i have place buy stop and sell stop orders together with different target profit according to the indicator level target shown. Each trade i have put different lot, 0.01, 0.02 and 0.04lot.

    Something interesting-sqbreakoutbox.gif

    And currently all my buy stop orders were triggered.

    Let's wait if the target level can achieve.

    Something interesting-sqbreakoutbox-trade.gif

  5. #205
    Administrator newdigital's Avatar
    Join Date
    Feb 2013
    Posts
    10,474
    Blog Entries
    2911
    Follow newdigital On Twitter Add newdigital on Facebook Add newdigital on Google+ Add newdigital on MySpace
    Add newdigital on Linkedin
    Premium section link to download:
    sqDynamicBreakoutBox_v1 600+ indicator is on this post. This is improved indicator with TPFiboBars parameter fixed.
    Premium Trading Forum: subscription, public discussion and latest news
    Trading Forum wiki || MQL5 channel for the forum
    Trading blogs || My blog

  6. #206
    Member Ace Trader Pro's Avatar
    Join Date
    Dec 2020
    Location
    South East Asia
    Posts
    98
    Blog Entries
    1
    My 2nd day trade using SQDynamicBreakout box indicator.

    Something interesting-gbpusdm15_2nd-trade-breakout.png

    Something interesting-sqbreeakout_trade-.gif

  7. #207
    Member Ace Trader Pro's Avatar
    Join Date
    Dec 2020
    Location
    South East Asia
    Posts
    98
    Blog Entries
    1
    Quote Originally Posted by matfx View Post
    This News Calendar Expert Advisor was provided for Roboforex MT4. The news is from Claws and Horns. You can select the time zone whether follow local time, GMT or MT4 server time. You can choose which news announce to display, no impact, low, medium and high impact news.

    Attach the EA and allow "DLL Import" on any chart you wish to display the news calendar.

    Remind again this News EA only work on Roboforex MT4.


    Great news EA. It works on other MT4 broker.

    Something interesting-news-ea.gif

  8. #208
    Senior Member matfx's Avatar
    Join Date
    Sep 2013
    Location
    Malaysia
    Posts
    1,178
    Blog Entries
    114
    Follow matfx On Twitter
    Quote Originally Posted by newdigital View Post
    There is famous martingale EA -

    Ilan1.4 - expert for MetaTrader 4 (EA is attached)

    Attachment 30815

    and someone uploaded the set files (attached too):
    I have search more info about Ilan advisor and found out that it is famous advisor used by Russian traders, with small and big money trade in real account.

    The EA have many versions, and alot of different settings. Will find out more.
    Follow my official trading theregulartrader blog

  9. #209
    Senior Member matfx's Avatar
    Join Date
    Sep 2013
    Location
    Malaysia
    Posts
    1,178
    Blog Entries
    114
    Follow matfx On Twitter
    Bolinger Band Bicolor.

    Something interesting-eurusddaily_bbandbicolor.jpg
    Attached Files Attached Files
    Follow my official trading theregulartrader blog

  10. #210
    Senior Member matfx's Avatar
    Join Date
    Sep 2013
    Location
    Malaysia
    Posts
    1,178
    Blog Entries
    114
    Follow matfx On Twitter
    Advanced Decline Ratio indicator for MT4.

    Something interesting-eurusdh1_advancedeclineratio.jpg
    Attached Files Attached Files
    Follow my official trading theregulartrader blog

Page 21 of 24 FirstFirst ... 11 19 20 21 22 23 ... LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •