can you share this arrow indicator, because I am a beginner and need it.
thanks
MT5 Time Frame Access Buttons 4 replies
MT4 GUI - Draw Buttons, Change Timeframes and Symbols 1 reply
Is it possible? Buttons for buy and sell and close open orders 3 replies
Help to make buttons in EA 0 replies
Disliked{quote} hi , KVAK can you share this arrow indicator, because I am a beginner and need it. thanks {image}Ignored
Disliked{quote} Hi Banzai Kindly edit this Stoch BT Indicator to hide also the Oscillator Window not only hide the Stoch lines. Regards {file} {image} {image}Ignored
Disliked{quote} i think, it's impossible to hide subwindow completely: we will have to delete induk from chart, and its button will be deleted along w it. although, can make separate induk-button, that will set/delete this induk from chart... but this is complicated & inconvenient idea .. don't know: who can do this!? gif-file... {image} {image} {file}Ignored
DislikedI would like to kindly request if it's possible to add an ON/OFF button to this indicator, so that I can toggle its visibility or functionality directly from the chart. This would help me manage my chart view more efficiently without needing to remove or reload the indicator. Thank you very much for your time and support! {file} {file}Ignored
Disliked{quote} --- {image} Download: {file} {file} --- {image} Download: {file}Ignored
Disliked{quote} Hello, have not idea, maybe direct me in article with this picture and I will remember what is it...Ignored
DislikedMind adding an option to turn the button ON/OFF in the indicator settings? Really appreciate it, thanks a lot!{file}
Ignored
Disliked{quote} Dear Coders I need your help please; to fix this OHLC Indicator to ignore Sundays, because on my broker it shows Highs and Lows for Sunday on a Monday, yet it is supposed to show Friday OHLC Levels. The pink lines on the pic, it is where the Friday levels are supposed to show. Thank you. {file} {image}Ignored
/*--------------------------------------------------------------------
Change-log: Bigger_TF_OHLC_dvl-BT_SundayFix
MODIFIED:[18-05-2025 ]
By: MwlRCT
--------------------------------------------------------------------
- Implemented "Sunday Fix": Modified OHLC data retrieval to enhance accuracy at the start of the trading week.
- When the indicator encounters a bar corresponding to a Sunday for the selected `TimeFrame` (e.g., PERIOD_D1):
- The Open, High, Low, and Close (OHLC) values are now sourced from the immediately preceding Friday of that same week.
- This is achieved by identifying Sunday bars (where `TimeDayOfWeek()` returns 0) and then shifting the bar index (typically `bar + 2` for daily timeframe) to fetch Friday's data.
- Added a bounds check (`if (fridayBarShift < Bars)`) to ensure data for the calculated Friday bar index is available, falling back to Sunday's data if not (e.g., at the very beginning of history).
- For all other days (Monday-Saturday), the OHLC data is fetched as per the original logic.
- Updated indicator version to "2.23".
- Modified button text and internal names to reflect the "Sunday Fix" (SF) modification (e.g., `btn_text` to "BigTF-OHLC-SF").
- Updated `IndicatorShortName` to include "(SundayFix)" for clarity on the chart.
- Ensured that the time placement of the drawn OHLC lines remains correct; only the price levels are adjusted for the Sunday-to-Friday substitution.
--------------------------------------------------------------------*/ Disliked{quote} --- Test this version: {image} --- ChangeLog: /*-------------------------------------------------------------------- Change-log: Bigger_TF_OHLC_dvl-BT_SundayFix MODIFIED:[18-05-2025 ] By: MwlRCT -------------------------------------------------------------------- - Implemented "Sunday Fix": Modified OHLC data retrieval to enhance accuracy at the start of the trading week. - When the indicator encounters a bar corresponding to a Sunday for the selected `TimeFrame` (e.g., PERIOD_D1): - The Open, High, Low, and Close (OHLC) values are now sourced...Ignored