Codes

Price Line 2 for MetaTrader 5

Shows Last Price, Daily % Change, Symbol name, Countdown or Time left on closing and Time on chat

RatesCompressor for MetaTrader 5

Rates Version of a script https://www.mql5.com/en/code/30791

High Low Lines for MetaTrader 5

Add High and Low lines based on number of previous bars defined in input field

Support Resistance Line Alert for MetaTrader 5

Add Popup or Push Alert notification on manually placed horizontal lines, The lines are deleted and reset itself as soon as price touches these lines

ZigZag NK Sound Alerts on Bar Change for MetaTrader 5

ZigZag NK Sound Alerts notifies you with Sound alert, Push Notification or Popup Notification on terminal when Zigzag changes its bar

ZigZag Color for Line Chart for MetaTrader 5

ZigZag Color Indicator for Line Charts which works on Close prices rather than High low This indicator has only one input parameter which is ExtDepth and its optimized for performance

Bobokus Fibonacci for MetaTrader 5

Select Timeframe to draw Bobokus Fibonacci and add any custom fibonacci levels you want

Consolidation Detector for MetaTrader 5

Draws an equidistant channel to detect rectangular consolidation pattern on chart

Quartile Trend Channel for MetaTrader 5

Fibonacci Channel with Quartile Trendline Levels

Price Line for MetaTrader 5

Shows Last Price, Daily percentage change and Time based on Input selection to the Price Line

Forum

Custom Symbol: ERROR 5308

I am trying to set SYMBOL_VOLUME_MIN on a custom symbol but its returning ERROR 5308 I have completely checked other parameters are working fine, but only SYMBOL_VOLUME_MIN for which i am setting the value as a double, returning ERR_CUSTOM_SYMBOL_PARAMETER_ERROR 5308 so i think its a bug in system

Marketwatch symbols do not switch on Profile Switching

Is it possible to switch marketwatch sets as well when switching profiles ? Thanks

How to find Chart Timezone of current chart?

Some charts are operational on TimeGMT() while some may work on TimeLocal() So i want to find what is Broker time on chart in a format like GMT + x ot GMT -x and print it as output Thanks

Convert int to double by adding decimals

int a = 3 (input) digits how can i get double b = 0.001 (output) ticksize using int a =3 it means add 3 decimals in format 0.001 which is used for ticksize I am using if (digit== 1 ) tickSize = 0.1 ; if (digit== 2 ) tickSize = 0.01 ; if (digit== 3 ) tickSize = 0.001 ;

How to draw trendline using Buffer?

Is there any way to draw a trendline connecting to two points without using Objects? DRAW_LINES only have PLOT_DRAW_BEGIN but its not working for two connecting points so i am curious to know what is the other way it can be done Thanks

x Cache error on Socket Response

I am using SocketCreate() default code on documentation to connect websocket but getting X-Cache error, Am i missing some header?, as it works on NodeJS Script i made but not with Native MQL5 Socket Network functions

Request for new feature in MT5 ; OHLC Alerts

I want to request a feature where i can select Open High Low Close also in Condition select field, As of now it only have Bid Ask Last Volume and Time but many strategies are also based on Candlestick Open High Low Close so I think this feature could be useful

What technical analysis tool you believe most to be working for entry exit in Forex?

Fibonacci / Harmonics Gann & Geometrical analysis involving angles Oscillators Pivot based on Price Action Other (please comment)

Is there any way to set these alerts from EA Code?

Is there any way to set these alerts from EA Code? Can you please share documentation reference, as I am tired of adding alerts manually for multi currencies

How to Pause Oncalculate function

I want to pause calculation in OnCalculate so all drawings on chart freezes until i enable calculation again How to do that