Arkenis
Arkenis
Friends

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

Arkenis
Added topic Can we modify extern variables during execution ?
Hi, I'm trying to modify extern variables in the init function but it doesn't seem to be working.. The EA says that variables are modified, but when I check in MT4, extern variables still have its default values :/ Here is my code: double
Arkenis
Added topic Using FileReadArray instead of FileReadDouble divide my profits by 10..
Hi, I wrote a function to see profits of each signals I used in my EA, it get those profits in files, and profits change if I use FileReadArray (handle, file, 0, 1) instead of FileReadDouble. I need to use array to write more informations in files, I
Arkenis
Registered at MQL5.community
Arkenis
Added topic Problem with File functions
Hi, I'm currently trying to use file functions , with csv files, I create 3 files in the init function and write something, it works, but when I try to write something else later, files aren't modified .. Here is my code: int init()   {
Arkenis
Added topic Problem with return..
Hi, Could anyone explain me why this function return 0 whereas the Print just before the return instruction says 1 ? bool resistanceConfirm( int i, int k, double firstPoint, double coeff, bool resistanceConfirm){      static int
Arkenis
Added topic Problem with OrderClose()
Hi, I'm currently doing an EA which use Bollinger Bands, it sends Buy/Sell Order when I want but I also wanted it to close all Buy/Sell Position when it opened a new Sell/Buy Position, and it doesn't work like it should.. Sometimes, my function sends
Arkenis
Added topic How to use Bollinger Bands in EA
Hi, I'd like to use Bollinger Bands when the chart is in trading range in order to get buy/sell signal when a bar touch the lower/upper band. I want to detect if the chart is in trading range by comparing value of upper band or lower band bar after
Arkenis
Added topic My EA never sends order
Hi, I'm just starting out to use MQL4, and I want to code an EA which would act like the default Moving Average EA of MetaTrader, I have no error when I compile, but it never sends any order when I try it with the Strategy Backtester .. Here is the