bro if possible mod please at least add options to use short/long horizontal line and trend line and rectangle with button click may be like mt4 default so we can analysis our chart comfortable please
Say something meaningful or Silence!!
1
I will code your pivot EAs for no charge 28 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
DislikedHey Guys, i want to learn and improve my MQL4 skills. I think the best way to do this is to practice. Unfortunately sometimes I don`t have any nice idea which i can implement in a Expert Advisor / Indicator. So if any of you is interested, please post in this forum your ideas and i will try to implement it into mql4. AndiIgnored
Disliked{quote} OK, so, this is what I have decided to do, and tested it, too: I tested two indicators: {file} NOTE! The above version has been updated!!! Please re-download. {file} I modified both of them so that they would not plot any arrows on Bar[0]. Of course: Do not change the files names!!! NOTE!!! The two indicators do not work exactly the same, so it's up to the user to figure out which is better with the EA. So, I made it possible in the EA to select which one of the indicators to use as signal source. {file} Do not change the file name!!! Otherwise:...Ignored
DislikedGood morning, BTEv Please find my Renkochart creator as per our discussion. Hercs. {file}Ignored
Disliked{quote} Good Morning Metatrader Could you make a horizontal line that will put out a Warning alarm when the horizontal line is touched or crossed... Yes I've just realised there are these sorts of lines already out there I want one line I can drag and drop To a Pacific point on the chart and when the candle touches that point or crosses it, It will send out a warning alarm.Ignored
DislikedPlease coders, I tried to make Button EA but the button overlap. help me make the necessary correction{file}Ignored
//+------------------------------------------------------------------+
void OnChartEvent(const int id,
const long &lparam,
const double &dparam,
const string &sparam)
{
//---
if(id==CHARTEVENT_OBJECT_CLICK)
{
// Check for button click
if (sparam=="BuyButton")
{
ExecuteOrder(OP_BUY);
ObjectSetInteger(0, "BuyButton", OBJPROP_STATE, 0); // Reset button state
}
else
if (sparam== "SellButton")
{
ExecuteOrder(OP_SELL);
ObjectSetInteger(0, "SellButton", OBJPROP_STATE, 0); // Reset button state
}
}
}
//+------------------------------------------------------------------+ Disliked{quote} maybe this can help pending when metatrader version will be available {file}Ignored
Disliked{quote} Thank you I'll try anything once. For some reason, I can't download any files that end in ex4 The only thing I can download is mq4 Thanks for your help.Ignored
Disliked...ratio of 1.618, I need the ratios to appear in the inputs: 1.382...1.4142..1.732...2.236....2.618...change the color of the square...Ignored
Disliked{quote} /*-------------------------------------------------------------------- Change-log: LUKE'S Universal EA_EMA_filter_v1.00 Date: 2025-01-18 By: MwlRCT -------------------------------------------------------------------- - Integrated EMA filter for trend detection and trade filtering: - Added input variables `EMA_Fast_Period` and `EMA_Slow_Period` for user-defined EMA periods. - Calculated EMA values (`EMA_Fast` and `EMA_Slow`) in the `OnTick()` function using `iMA()`. - Determined the current trend (`Current_Trend_Bullish`) based on the relationship...Ignored
Disliked{quote} Hi Sir! I understand you're busy, but I need your help. I've added Martingale logic to the Universal EA, but something's off, it’s not scaling properly. I also replaced the EMA logic with a candle bias filter, but now it’s taking too many trades. While there are some wins, losing trades are being left open, and I want it to use Dynamic Martingale to cover those negative losses. Could you help me figure this out? ~Kim Louise {file} {file}Ignored
If not let me know, write with more details of what you need:
Disliked{quote} Your buttons overlap because they are both in exactly the same X/Y positons: {image} Another thing is that if you want to execute an order OnClick, you need to use the OnChartEvent() function like this: //+------------------------------------------------------------------+ void OnChartEvent(const int id, const long &lparam, const double &dparam, const string &sparam) { //--- if(id==CHARTEVENT_OBJECT_CLICK) { // Check for button click if (sparam=="BuyButton") { ExecuteOrder(OP_BUY); ObjectSetInteger(0, "BuyButton", OBJPROP_STATE, 0); // Reset...Ignored