fxturn
fxturn
Friends

Add friends via their profile or user search and you will be able to see if they are online

fxturn
Added topic Possible Read News from "News" Tab
Hi, I wonder is any solution to read News from "News" Tab in metatrader by script or indicator? Regards
fxturn
Added topic Any Solution Run two Scripts in same Time?
Hi, I want run two scripts in same time in MT4. Is this possible? Current when run first script and try run second script, MT4 alerts "would you like stop first and run second". Can disable this Alert too? Regards
fxturn
Added topic GetDlgItem Function
Hi, I want use int GetDlgItem ( int hDlg , int nIDDlgItem ) function in script in MT4. Where I can find nIDDlgItem values for different sections same Navigator, Market Watch and another Menus? Is there script to find that or any list? Regards
fxturn
Added topic How to programmatically Full screen a chart window or Close that
Hi, I want how programmatically Full screen a chart window? And want know how programmatically close one open chart ? Regards
fxturn
Added topic Open Chart by Script in MT4
Hi, Is there any way in MT4 that make script or dll, able open chart by that(for example EURUSD) and next Press "F1" keyboard? Regards
fxturn
Added topic Use ex4 instead dll
Hi, I want know it possible, instead I make library in dll format, make that in ex4 format? If yes, any reference for that? Regards,  
fxturn
Added topic Problem with StringConcatenate()
Hi, I want use StringConcatenate()  to generate below string: res="EURUSD", For EURUSD, I want use Symbol() function , How I can add "" to this? Regards;
fxturn
Added topic About Period Convertor
Hi, I see this script in mql4.com:  https://www.mql5.com/en/code/7936 This can generate offline chart for custom TF same M2, H2,.... I want know possible we generate offline chart for H4 or H1 or H2 that instead candle start from Minute 0, start
fxturn
Added topic critical error c0000005 at 61BB16EC
Hi, I made one dll that try call some function from metatrader platform.: Collapse | Copy Code   #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers #include < windows.h > #include < stdlib.h > #include <
fxturn
Added topic How Passing String Array To DLL
Hi, I want know how passing string array to DLL. string symm[3]={"R1","R2","R3"}; Mql section: # import name.dll string Paste(string &rr[]); Paste(symm); DLL section: MT4_EXPFUNC char* __stdcall Paste(char* sym){ }
fxturn
Added topic Problem With Public Variable
Hi, I have one dll that used by one platform(MetaTrader) and another exe file. I define one Public variable(PP) in header code and set value in MT4_EXPFUNC double __stdcall Reza(double ppp) function . When try call this dll from my exe it returns
fxturn
Added topic Calling dll function that returns an array
hi, I made one dll that return array or vector. I want know I can read this array or vector in mql or not? If yes, how? Regards
fxturn
Added topic Increase Number of Bars in Chart
Hi, I have one indicator and want know possible increase number of bars in chart? for example current chart show only 3227 bars for TF: H1. is there any solution to load more bars from historical data to chart? Regards
fxturn
Added topic Optimizing Question
Hi, My question is about optimizing section in strategy tester . For example we have one EA and want optimize tat for 12 months. After do this optimizing with MT4 it selects only setting with positive profit. So we have 12 months results that maybe
fxturn
Added topic DLL critical error
Hi, I wrote one dll that after it starts to work after 10-20 minutes get below error in my MT4: 2011.10.13 19:04:28 Indi1 EURUSD,M15: function 'ind_Ichimoku' call from dll 'C_Source.dll' critical error When starts it works properly but after a while
fxturn
Registered at MQL5.community
fxturn
Added topic how connect to website/server from C++ dll?
Dear Sirs, I want know how I can connect from C++ dll to website/server for sending or getting information? Thanks
fxturn
Added topic How to expire an application/demo after x days?
Dear Sirs, I made one dll for one indicator bu VC++ 2008. I want make one change in this code that after for example 7 days expire that. I mean works it only for 7 days after first start and time that defined on that. In below you can see one my