folks
does anyone have the worst EA with exact same sl and tp?
does anyone have the worst EA with exact same sl and tp?
I will code your pivot EAs for no charge 25 replies
I will code your scalping EAs for no charge 163 replies
Oanda MT4 - Indicators and EAs not showing 2 replies
EAs and indicators relating to moutaki... 22 replies
InterbankFX has loaded its MT4 platform with custom EAs, indicators and scripts 1 reply
Disliked{quote}Add a condition that EA will close all positions at the end of the day. This allows each day to have a trade at the time I set Thank you !Ignored
/*-------------------------------------------------------------------- Change-log: Balanced Dual-Position Scalping Strategy_EA_v1.0 Date: 2025-01-16 By: MwlRCT -------------------------------------------------------------------- - Added daily position closure functionality: - Implemented a mechanism to automatically close all open positions at user-defined times each day. - Added input parameters `EnableDailyClosure`, `CloseTimes`, `TimeZoneOffset`, and `RetryAttempts` for flexible configuration. - Integrated time zone support to align closure times with the user's local time. --------------------------------------------------------------------*/
At 11:59 PM EST and 12:00 PM EST, the EA will:
Download:
Dislikedhii can somebuddy suggest or bulid small tool to change timeframe in all charts like i have 4 different chart and all chart in 4h timeframe so if i change timeframe of any chart to 1 hour then automatically all other chart's change to 1hr. for mt5 thanks that save me lot timesIgnored
Disliked{quote} That would just be the 10 SMA on Median Price, ( High + Low ) / 2 RegardsIgnored
Dislikedany programmer convert this mt5 indicator into mt4 indicator its no repaint indicator looking Good on Higher TF {file}Ignored
Disliked{quote} That's because when you apply this canvas, it's actually OBJ_BITMAP_LABEL, so you can't click on the button, because you are clicking on the OBJ_BITMAP_LABEL. Maybe if you played with the OBJPROP_ZORDER that would help, but you need to do that property for the EA buttons and for the canvas, so that the priority is for the buttons. BTW, that's not an error! That's a Print() control message. It tells you what you clicked.Ignored
OUTPUT.CreateBitmapLabel(ChartID(),0,SYSTEM_TAG+"_OUTPUT",0,0,screenX,screenY,COLOR_FORMAT_ARGB_NORMALIZE);
Disliked{quote} This is the best I can do. {file}{file}The filling option isn't available in MQL4, and to simulate it is too much work. Also, in order to do it better, would require too much time which I'm not willing to spend on this one.Ignored
Disliked{quote} This is where BitmapLabel is created : OUTPUT.CreateBitmapLabel(ChartID(),0,SYSTEM_TAG+"_OUTPUT",0,0,screenX,screenY,COLOR_FORMAT_ARGB_NORMALIZE); and when I add OBJPROP_ZORDER there I'll get an error(no one of the overloads can be applied to funtion call). I don't get it, where to add zorder option then?Ignored
#include <Canvas\Canvas.mqh>
//+------------------------------------------------------------------+ void OnDeinit(const int reason) { BitmapLabelDelete(0,"Key Levels_OUTPUT"); ChartRedraw(); } //+------------------------------------------------------------------+
//+------------------------------------------------------------------+ //| Custom indicator iteration function | //+------------------------------------------------------------------+ int OnCalculate(const int rates_total, const int prev_calculated, const datetime &time[], const double &open[], const double &high[], const double &low[], const double &close[], const long &tick_volume[], const long &volume[], const int &spread[]) { ObjectSetInteger(0,"Key Levels_OUTPUT",OBJPROP_ZORDER,0); return(rates_total); }
DislikedHi everyone does someone have a fair value gap or imbalance indicator for mt4 but if it possible to adjust the setting for each of the three candle? And thank youIgnored
// Up Candle if (low[i] > high[i+2] && close[i] > open[i] && close[i+1] > open[i+1] && close[i+2] > open[i+2] && close[i+3] > open[i+3]) { _up_BodyHigh[i] = low[i]; _up_BodyLow[i] = high[i+2]; } // Down Candle if (high[i] < low[i+2] && close[i] < open[i] && close[i+1] < open[i+1] && close[i+2] < open[i+2] && close[i+3] < open[i+3]) { _dn_BodyHigh[i] = low[i+2]; _dn_BodyLow[i] = high[i]; }
Disliked{quote} Added option to use percentage levels in ADR mode: UPDATE!!! Made some improvements: ADR does not include current day. Allows to use ADR Period = 1. {file} {file} Please UPDATE !!! {image} The code is compatible with MQL4 and 5. There is no need to change anything in the code, itself.Ignored
DislikedHi guys, Found cool MT5 levels indicator from mql site ... very simple trade EA with sell/buy buttons and I can not click them if that level indicator is on the chart. As soon as I remove that indicator EA buttons works fine. Error I get with that indicator on: {image}Ignored