asdf
asdf
Friends

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

asdf
Added topic how can I change indicator color ?
how can I change the moving average line when it cross above 20 to red and when it cross below 0 it change to green, then it put a dot above or below that bar ? also I can not use the custom color for the indicator. 
asdf
Added topic questions about MT5 indicator ability
I am developing couple indicators with mt5 but I am new and I hear I can not creat objects with indicator, if so is that mean I can not do something like these indicators ?  can I do the same like this indicator ?   or this one
asdf
Added topic cant log in from wifi
i try to use mt5 from my laptop but it keep failing, it have a message '64315': authorization on metaquotes-memo failed (invalid or fake server). i can connect if Im  not use wifi to connect
asdf
Added topic how do i call ema sma and other moving averages ?
i try to create my own macd but i dont know how to call the moving averages , how do i use those cidema , some sample codes would be appreciate
asdf
Registered at MQL5.community
asdf
Added topic simple ea but not working
can anybody tell me why this code doesnt work ? as i can see i followed all the rules to create an ea. double    prerange2 = iHigh ( Symbol ( ) , PERIOD_M5 , 2 ) - iClose ( Symbol ( ) , PERIOD_M5 , 2 ) ; double    prerange1 =
asdf
Added topic why these codes dont work in my ea ?
i created a new ea base on some strategy from tsd, im sure this is the simplest and easiest codes but i just cant figure out where is wrong, any help would be appreciate rules : buy when there are 3 complete 15 minutes bars close down and sell when 3
asdf
Added topic stop ea after excute a trade
i want to stop ea for 10 minutes everytime the ea enter a trade, is there any way to do that beside using sleep()
asdf
Added topic need some help for custom functions
i want to do something like this but dont know is it possible, i came up this idea cause it can save me alot time and lines for codiing int line ( ) { int shift = 0 ; int shift2 = 0 ; int movement = 0 ; double redline ( shift ) = iCustom ( Symbol ( )
asdf
Added topic getting value in a function
i create a custom function but i dont know how to get the value from it and compare them in if statement double checkbar ( ) { popen = iOpen ( Symbol ( ) , 0 , 1 ) ; pclose = iClose ( Symbol ( ) , 0 , 1 ) ; phigh = iHigh ( Symbol ( ) , 0 , 1 ) ; plow
asdf
Added topic is this right ?
the explain for orderstoploss(): Returns stop loss value for the currently selected order. I assume that orderstoploss, orderlot, orderopenprice, ordertakeprofit are set to 0 on defualt then we set the function when we using ordersend() function
asdf
Added topic how can i put functions into ordersend ?
can i do something like this : or do i have to set the takeprofit to 0 then use mondify orders to check for profit then insert them in ? int start ( )    { int ema =      iMA ( Symbol ( ) , PERIOD_D1 , 13 , 0 , MODE_SMMA
asdf
Added topic how to open 2 position together
how can i open a long and short position together at the same time, like i want to open a position for eur/usd long at the same time i want to open a position for short
asdf
Added topic how do i create the real macd indicator
the macd come with mt4 only have 1 line and is useless so i want to create my own, the following rules are what i found from the internet macd = 12 ema - 26 ema signal = 9 ema of macd histogram = macd - signal can anybody help me to program this macd
asdf
Added topic how do i compare 2 bars ?
i want to count how many bars went green on the last 5 bars, how do i do it
asdf
Added topic where is the crossed() function at ?
i am a newbie to mt4 but i willing to learn, i read some books online and learn this function crossed(), like iscrossed = crossed(shortma, longma); etc. but i want to get to know deeper about this function where does it locate at, I just cant find it