Disliked{quote} Hi jeanlouie , the hide price option (_include price?)seems not working any chance you can fix it ? ThxIgnored
MAs_MTF_toggle_v1.71
Attached File(s)
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
Disliked{quote} Hi jeanlouie , the hide price option (_include price?)seems not working any chance you can fix it ? ThxIgnored
DislikedPLEASE Someone who has EA or indicator for deriv volatility indices. Share itIgnored
Disliked{quote} #include <variables.mqh> #include <objectfunctions.mqh> Got those files? Can't get it to work without those files, and the author is commercial, so I doubt we can find those libraries for free.Ignored
Disliked{quote} I had a second person notify me of this, so I tried again to replicate it or find out how it'd happen, I did find a way to replicate it, it's been amended, please verify it on your end. HLine_Alert_Maker_v1.4 - multiple line alert bug fixed - option to not show text on lines (course they wouldn't have names anymore, but just an option) - reminder that lines can be given no color, for those that want a lighter chart {image} {image} {file}Ignored
Disliked{quote} it is working fine with my chart. Maybe, your Gap is set to too high and markers at placed on too far. I have modified so that you don't have to set Market Gap in this latest. {file}Ignored
DislikedHi all Master Coder I need to simplified this indi.I need your help. The system rule is trade outside bb only using the SNR indi.See the picture for better understanding. {image} The input must have detail like below {image}Result should look like this{image} The indicator file {file} Thank againIgnored
Disliked{quote} it is awesome man you made it exactly what i asked , cant thanks enough man. would you please develop it further to have some quick on/off function please? like a button to turn it off pleaseedit: after testing it , you right it goes a bit crazy lol just keeps alerting . would you please check to see whats the bug? thanks again
Ignored
Dislikededit: after testing it , you right it goes a bit crazy lol just keeps alerting . would you please check to see whats the bug? thanks againIgnored
Disliked{quote} Yeah, sorry, but no luck this time. After fixing error it still doesn't work. It's got tons of bugs, I can't fix it.Ignored
DislikedThis indicator is dead please coders help me to bring it back to live, great coders here.Thanks {file}Ignored
Disliked{quote} Well, I just searched on the web for it and found the link, below. I would always suggest to anyone to not just grab the .mq4 file, but download the whole .rar file, decompress it and follow the instructions on that page. Page: https://myfxindicators.com/739/alpha-trader-strategy/ Dld: https://myfxindicators.com/file/ts/A...20Strategy.rar I didn't try it myself, but it all looks valid, and it may actually need all the parts, not just some select bits of it?Ignored
Disliked{quote} There is no bug, we can't do it any other way if the alert must sound every time it touches a price. Otherwise we can do it once per a certain period or even once per a defined number of seconds, but then it will not sound when it touches, because it can touch during the pause. And even one second can be worth hundreds of pips in this business. IOW, a code can not think, it can only execute what we tell it to do. If we tell it to alert on every touch, that's what it's going to do.Ignored
Disliked{quote} ICMarkets doesn't close your trades as broker, because they don't process your trades, they just send them to the exchange. If you want to trade seconds or ticks, you can't use MT4 at all, you need a completely different broker and platform. I'm talking about ICMarkets in Australia, the True ECN broker. People have traded for years with them and I have never heard of any problems.Ignored
//+------------------------------------------------------------------+ //| FractalSupportResistance.mq4| //| Copyright :copyright: Alexander Elgin | //| [email protected] | //| | //+------------------------------------------------------------------+ #property copyright "Alexander Elgin" #property link "[email protected]" //Modified, 09/jul/2022, by jeanlouie, www.forexfactory.com/jeanlouie // - all tfs // - inputs for tf selection // - each tf input width/style/color // - strict property // - removed #properties for indicatorcolor/styles // - added copyright header //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ #property indicator_chart_window #property strict //#property indicator_color1 Green //#property indicator_color2 Gold //#property indicator_color3 DarkOrange //#property indicator_color4 Red //#property indicator_color5 FireBrick //#property indicator_style1 STYLE_DOT //#property indicator_style2 STYLE_DOT //#property indicator_style3 STYLE_SOLID //#property indicator_style4 STYLE_SOLID //#property indicator_style5 STYLE_SOLID #define PERIODS_NUMBER 9//5 #define INDICATOR_NAME "Fractal Support Resistance" #define SUPPORT "support" #define RESISTANCE "resistance" #define BAR_TO_START_SCAN_FROM 2 input bool tf_m1 = false; //M1 input int tf_m1_w = 2; //__ width input ENUM_LINE_STYLE tf_m1_s = STYLE_SOLID; //__ style input color tf_m1_clr = clrWhite; //__ color input bool tf_m5 = false; //M5 input int tf_m5_w = 2; //__ width input ENUM_LINE_STYLE tf_m5_s = STYLE_SOLID; //__ style input color tf_m5_clr = clrSilver; //__ color input bool tf_m15 = false; //M15 input int tf_m15_w = 2; //__ width input ENUM_LINE_STYLE tf_m15_s = STYLE_SOLID; //__ style input color tf_m15_clr = clrMoccasin; //__ color input bool tf_m30 = false; //M30 input int tf_m30_w = 2; //__ width input ENUM_LINE_STYLE tf_m30_s = STYLE_SOLID; //__ style input color tf_m30_clr = clrAqua; //__ color input bool tf_h1 = true; //H1 input int tf_h1_w = 2; //__ width input ENUM_LINE_STYLE tf_h1_s = STYLE_SOLID; //__ style input color tf_h1_clr = clrYellow; //__ color input bool tf_h4 = true; //H4 input int tf_h4_w = 2; //__ width input ENUM_LINE_STYLE tf_h4_s = STYLE_SOLID; //__ style input color tf_h4_clr = clrLime; //__ color input bool tf_d1 = true; //D1 input int tf_d1_w = 2; //__ width input ENUM_LINE_STYLE tf_d1_s = STYLE_SOLID; //__ style input color tf_d1_clr = clrRed; //__ color input bool tf_w1 = false; //W1 input int tf_w1_w = 2; //__ width input ENUM_LINE_STYLE tf_w1_s = STYLE_SOLID; //__ style input color tf_w1_clr = clrBrown; //__ color input bool tf_mn1 = false; //Mn1 input int tf_mn1_w = 2; //__ width input ENUM_LINE_STYLE tf_mn1_s = STYLE_SOLID; //__ style input color tf_mn1_clr = clrWhite; //__ color //int timeframes[PERIODS_NUMBER] = {PERIOD_H1, PERIOD_H4, PERIOD_D1, PERIOD_W1, PERIOD_MN1}; //int styles[PERIODS_NUMBER] = {indicator_style1, indicator_style2, indicator_style3, indicator_style4, indicator_style5, indicator_style6, indicator_style7, indicator_style8, indicator_style9}; //color colors[PERIODS_NUMBER] = {indicator_color1, indicator_color2, indicator_color3, indicator_color4, indicator_color5, indicator_color6, indicator_color7, indicator_color8, indicator_color9}; int timeframes[PERIODS_NUMBER] = {PERIOD_M1, PERIOD_M5, PERIOD_M15, PERIOD_M30, PERIOD_H1, PERIOD_H4, PERIOD_D1, PERIOD_W1, PERIOD_MN1}; bool tf_use[PERIODS_NUMBER]; int styles[PERIODS_NUMBER]; color colors[PERIODS_NUMBER]; int widths[PERIODS_NUMBER]; int init() { IndicatorShortName(INDICATOR_NAME); setup(); return(0); } int deinit() { string object_types[2] = {SUPPORT, RESISTANCE}; for(int timeframe_index = 0; timeframe_index < ArraySize(timeframes); timeframe_index++) for(int object_type_index = 0; object_type_index < ArraySize(object_types); object_type_index++) ObjectDelete(getTrendLineName(object_types[object_type_index], timeframes[timeframe_index])); return(0); } int start() { for(int timeframe_index = 0; timeframe_index < ArraySize(timeframes); timeframe_index++) { if(!tf_use[timeframe_index])continue; if(Period() <= timeframes[timeframe_index]) { drawResistance(getUpperFractalBar(timeframes[timeframe_index], BAR_TO_START_SCAN_FROM), timeframe_index); drawSupport(getLowerFractalBar(timeframes[timeframe_index], BAR_TO_START_SCAN_FROM), timeframe_index); } } return(0); } ... int getUpperFractalBar(int timeframe, int starting_bar) { for(int bar = starting_bar; bar < Bars; bar++) if(isUpperFractal(timeframe, bar)) return(bar); return (-1); } bool isUpperFractal(int timeframe, int bar) { for(int offset = -2; offset <= 2; offset++) if( (offset != 0) && (iHigh(Symbol(), timeframe, bar + offset) > iHigh(Symbol(), timeframe, bar)) ) return(false); return (true); } int getLowerFractalBar(int timeframe, int starting_bar) { for(int bar = starting_bar; bar < Bars; bar++) if(isLowerFractal(timeframe, bar)) return(bar); return (-1); } ...
Disliked{quote}...when repeat sound is off it doesnt play any sound at all , would you please correct this little problem?Ignored
Disliked{quote} For a single sound you can have the alert popup on, but attached has an option to play a soundfile once as an alert option. HLine_Alert_Maker_v1.41 - option to play a sound once as an alert {file}Ignored