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 Bobokus Fibonacci
Select Timeframe to draw Bobokus Fibonacci and add any custom fibonacci levels you want
Dark Ryd3r
Published code Consolidation Detector
Draws an equidistant channel to detect rectangular consolidation pattern on chart
· 1 7588 1737
Dark Ryd3r
Added topic '+' - variable expected
ArrayResize ( "ZZ_M1 ,symbolCount); ArrayResize("ZZ_M2",symbolCount); ..... For ArrayResize I want to write it with for loop int timeframes[ 11 ]= { 1 , 2 , 3 , 4 , 5 , 6 , 10 , 12 , 15 , 20 , 30 };    for ( int i= 0 ; i< 11 ; i++) {
Dark Ryd3r
Added topic ZigZag Buffer values returns 0.0 on Multi Symbols
Hi, //+------------------------------------------------------------------+
Dark Ryd3r
Added topic Compress MQLRates
Since i load many charts I am looking for ways to compress MQLRates data structure so it can reduce hcc file size and storage By default MQLRates stores all info of OHLC as we can see this in strategy tester but i am looking for any solution so it
Dark Ryd3r
Added topic Can we change Selected Fibonacci points
Hi, in OBJ_FIBO 0 and 1 is already selected points which we use to draw from swing high to low? I was wondering if we can change these selection points values other from 0 and 1 based on our choice? If so, please let me know if its possible Thanks
Dark Ryd3r
Added topic CAppDialog issues with EventSetTimer
I am using standard library CAppDialog to create a dialog void OnInit () { EventSetTimer ( 1 ); } void OnTimer() { // Do Something } When EventSetTimer ( 1 ); is set, The panel freezes and becomes unresponsive but when EventSetTimer ( 5 ); is set, it
Dark Ryd3r
Added topic x bytes of leaked memory
With recent update of Metatrader 5, all my indicators / EA are reporting warning of x bytes of leaked memory either on OnInit() or ExpertRemove() function Is there something i need to update for all my indicators with compability of recent update
Dark Ryd3r
Added topic Fixing MQLRates
I am importing data from Websocket :              MqlRates rates[ 1 ];              ArrayResize (rates, 1 );
Dark Ryd3r
Added topic How can i print something in Alerts tab in Toolbox?
I was wondering how can i put alerts strings here in Toolbox > Alerts tab Using Alerts() function it never prints anything there
Dark Ryd3r
Added topic How to copy upper and lower deviation of iEnvelopes?
handle1= iEnvelopes (name,period,ma_period,ma_shift,ma_method,applied_price,deviation); I am createing an Envelope using iEnvelopes function but when i want to copy values of upper and lower channel, double BufferEnvelope[]; CopyBuffer (handle1, 0
Dark Ryd3r
Added topic How can i send Stop Loss and Take Profit order seperately?
Hello, I am trying to find out which function i can use from mql5 which allows me to send seperate Stop Loss and Take Profit orders? I want to send SL and TP order not with the current order, but only when a condition is met. Thanks
Dark Ryd3r
Added topic How can i make EA to trade when no Tick data available?
I do not use Tick data on chart so there is no Bid Ask I want to send order from my EA based on Close price only. I have tried to use trade.Buy and trade.Sell based on <Trade\Trade.mqh> but on Strategy tester its giving "requote" notification
Dark Ryd3r
Published code Quartile Trend Channel
Fibonacci Channel with Quartile Trendline Levels
Dark Ryd3r
Added topic hcc file size too big
I use OHLC data to import from Websocket and update it using CustomRatesUpdate When I import data from 1 jan to 1 aug its file size is 19MB only but after one day size of file 2021.hcc under <DataFolder> > bases > <symbolname>
Dark Ryd3r
Added topic ChartIndicatorDelete also Deletes Alert Window
ChartIndicatorDelete () when it is called, it also deletes Alert popup window Is it a bug? If so how to report it
Dark Ryd3r
Published code Price Line
Shows Last Price, Daily percentage change and Time based on Input selection to the Price Line
Dark Ryd3r
Added topic ChartRedraw(0) not working
I am updating Rates to chart              MqlRates rates[ 1 ]; rates [ 0 ] .open = GetRatesOpen (); rates [ 0 ] .high = GetRatesHigh (); rates[ 0 ].low  = GetRatesLow(); rates [ 0
Dark Ryd3r
Added topic How to close a candle with time in msc?
Hello, I am using MQLTIck to add custom ticks to chart          MqlTick tick[ 1 ];          tick[ 0 ].ask = Getask;          tick[
Arowoile
Arowoile 2021.07.27
i like your buy at your price robot. infact it is the EA i have been looking for. but it is not compatible with myy mt4 trader. could you please help me send mt4 version. The alerts are not neccesary. thank you. because i stumble on this platform , you can contact me via :parbum4real@gmail.com
Dark Ryd3r
Dark Ryd3r 2021.07.31
which EA?
Dark Ryd3r
Added topic How do I enable Demo Trading for Custom Symbol
I have made a custom symbol with live data from Websocket I want to trade the symbol by adding some demo funds How can i do that? The new order button is greyed out The symbol has mode set : Trade - Full access