Dark Ryd3r
Dark Ryd3r
Coding Trading Living

Expertise in MQL5 Indicators and Script programming, Alert Notification, Panels and Neural network based big data analysis,
Strategy Testing, Expert Advisor Tweaking, Parameter's Optimization through Cloud Farming and using Multi Network Chain,

I am both a crypto trader and programmer
Dark Ryd3r
Published code OnTester Commission Calculator
Calculates Brokerage, Commission or Slippage based on the Input on the strategy Tester
Dark Ryd3r
Published code Buy Sell on your Price
Buy Sell on your price, Choose Market order, Pending Limit order or Pending Stop Order
Dark Ryd3r
Added topic Setting Commission on strategy tester
My broker charges 0.04% commission fee on each deal How do I set it up on commission settings? my current settings are but its giving wrong result
Dark Ryd3r
Added topic 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 
Dark Ryd3r
Published code Risk Reward Tool
Risk Reward Tool calculates Risk reward like 1:2 1:3 1:4 and 1:5
Dark Ryd3r
Published code Fibonacci Expansion with Custom Values
This script draws Fibonacci Expansion OBJ_EXPANSION with options to add your own custom values
Dark Ryd3r
Published code Fibonacci Fan with Custom Values
This script draws Fibonacci Fan OBJ_FIBOFAN with options to add your own custom values
Dark Ryd3r
Published code Fibonacci Retracement with Custom Values
This script draws Fibonacci Retracement OBJ_FIBO with options to add your own custom values
Dark Ryd3r
Published code Candle Closing Time Notify Alarm
Notifies you at your specified Chart Time Indicator can be used to set alarm at a specified time on the chart.
Dark Ryd3r
Published code Symbol Percentage Change & Time
Shows Symbol name, percentage change of price from last day, and Time Time has input options, You can select GMT, LocalTime or TradeServerTime
Dark Ryd3r
Published code Aquarium Canvas Background
Aquarium Canvas Background for Chart This script adds cool live canvas background on the chart like aquarium
Dark Ryd3r
Published code Custom Angle Trendline
Sometime we have to work with Custom Angles based trendline for price action analysis e.g. 45 degree angle is considered more important for up or down trend. This indicator will help you by drawing a trendline which will match your custom angle on last input number of bars
Dark Ryd3r
Added topic How to get datetime Value of OBJ_VLine?
I have an object OBJ_VLINE (vertical line) on chart with name "vline" with datetime 2021.06.08 00:00:00 I see I can not use ObjectGetTimebyValue as it does not support OBJ_VLINE So how can i get datetime value of OBJ_VLINE
Dark Ryd3r
Published code IsConnected
Checks if Metatrader5 Terminal is connected to Internet or not. The expert will Print a message for the connectivity status
Dark Ryd3r
Added topic Candlesticks stops plotting based on MqlTick when i update MqlRates
I have an operation custom symbol which is "XYZ" the code to feed data is  : MqlTick tick[ 1 ]; ArrayResize (tick, size); tick[ 0 ].ask = Value1; tick[ 0 ].bid = Value2; int ReplaceTick= CustomTicksAdd (ymbol,tick); now ticks are plotting
Dark Ryd3r
Added topic A new sub window for Popup Alert
I use Alert() Function for popup alerts on my indicator but I want to filter the alerts on different windows? Is there any way i can open Alert Popup new window
Dark Ryd3r
Added topic Ask price showing on chart with slight delay
I am using code    MqlTick last_tick;    SymbolInfoTick ( _Symbol ,last_tick);       double Askx=last_tick.ask;    Comment ( "" , Askx); to calculate Ask price, but its showing with slight delay as
Dark Ryd3r
Added topic Importing Symbol from LIVE Excel CSV File
I have a csv file which gives live bar data how can i import it on MT5
Dark Ryd3r
Added topic Unable to backtest current day market data in strategy tester
I am unable to backtest current day market data on strategy tester Market has been closed and candles have stopped ticking, but strategy tester not showing current day data Is it a bug on Metatrrader? How to fix this
Dark Ryd3r
Added topic How to get nth Candle's High and store it in a double?
I am trying to store high of any particular candle in a double. here is what i am doing if (blah blah happens) {              double HighFC[];