Kosei S
Kosei S
Friends 1
Kosei S
Added topic How can I set expiration?
datetime SetOrderExpirationTime( int halfhours) {      return ( TimeCurrent () + halfhours * 1800 ); } bool BuyStop_Func( double volume, double orderprice, ulong slippage, double stopLoss, double takeProfit, ulong magicnumber) {
Kosei S
Added topic Do you know how to run batch file on MT5 ?
#import "Shell32.dll" int ShellExecuteW(    int hWnd,    string operation,    string file,    string parameters,    string directory,    int nCmdShow); #import string filepath =
Kosei S
Added topic I would like to create Fibo crosshairs or something in MQL5
I would like to write a code in MQL5 that follows the mouse cursor, just like when you click on Fibo, channels, trend lines etc on MT5. When I used ObjectCreate , it will look like a point in the X and Y coordinates. Is there a function to create
Kosei S
Added topic I would like to get PRICE of different currency pairs
I have problem from MQL4 I would like to get the price of the currency pair to directly, but the price to get depends on the currency pair to be introduced. How can I get the direct price? double USDJPY[]; ArraySetAsSeries (USDJPY, false ); int
Kosei S
Added topic I would like to display RSI only on specified bars
I would like to display only the specified bars by RSI in order to lighten the indicator, but it is not displayed well. How to display RSI for only specified of bars? //+------------------------------------------------------------------+
Kosei S
Added topic Why can't I close and entry in the same minute?
//+------------------------------------------------------------------+
Kosei S
Added topic I want to write short code
TimeDay( TimeCurrent ())!= 1 &&TimeDay( TimeCurrent ())!= 2 &&TimeDay( TimeCurrent ())!= 3 &&TimeDay( TimeCurrent ())!= 4 &&TimeDay( TimeCurrent ())!= 5 TimeDay( TimeCurrent ())!=( 1 || 2 || 3 || 4 || 5 ) I want to
Kosei S
Added topic Why are the same lots but different profits?
Same Lots, but one is +198Points for + $ 62 and the other one is -37Points for-$ 95, why are the profits different
Kosei S
Added topic How can I get Close [0]?
//+------------------------------------------------------------------+ //| Check for open order
Kosei S
Added topic Arrows are not displayed in real time
#property indicator_chart_window #property indicator_buffers 2 #property indicator_plots    2 // --- Sell #property indicator_label1 "Sell" #property indicator_type1 DRAW_ARROW #property indicator_color1 clrAqua #property indicator_width1 1
Kosei S
Registered at MQL5.community