Basic Library to Create Volume Profiles – library MetaTrader 5

Basic Library to Create Volume Profiles - library for MetaTrader 5
This library provides a few simple public methods to create and plot Volume Profiles: class VolumeProfile   { … public:    void              VolumeProfile(datetime _from, datetime _to);                     ~VolumeProfile() {};    double            GetHVPrice();    void              Plot(); …   }; GetHVPrice returns the price that is related to highest volume in the range. Here is a sample script to instantiate and plot a … Read more

Basic GridManager Library – library MetaTrader 5

Basic GridManager Library - library for MetaTrader 5
The library contains basic public methods to manage grids: public:                      GridManager(ENUM_GRID_DIRECTION direction, double grid_initial_lot_size, int grid_gap_points, double grid_profit_percent);                     ~GridManager() {};    void              SetGridMagicNumber(ulong magic);    void              SetGridMaxDD(double max_dd_percent);    void              SetGridMultiplier(double lot_multiplier);    void              Start(void);    void              Update(void);    void              CloseGrid();    double            GridPnL();    int               CountPositions(); In above code: MaxDD stands for “maximum allowed drawdown”. This value is disabled by … Read more

Basic Trailing Stop – EA MetaTrader 4

Basic Trailing Stop Inputs
Real author: Inovance – Add a trailing stop to your entry signals. Simply put in your entry conditions so that the LongRule() function returns “1” when long conditions are met and the ShortRule() function returns “-1” when the short conditions are met. You can set the trailing stop distance, in pips, as an external input. … Read more

Places a retrace limit Buy,Limit Sell Order basic on Parabolic Sars Value. – EA MetaTrader 4

Places a retrace limit Buy,Limit Sell Order basic on Parabolic Sars Value. - expert for MetaTrader 4
Para_Retrace.mq4  Copyright 2018 , raymondyeung.htc@gmail.com Speed Technology Description: Places a retrace limit Buy,Limit Sell Order  basic on Parabolic Sars Value. Global Variables , Press function key “F3” Change “GMT_Time_Diff” : Diff. Eastern Time with Local Time “_ParaSL_SL”    : Stop Loss Pips “_ParaSL_TP”    : Take Profit Pips “_Para_Diff”    : Retrace Entry , Pips … Read more