Forum

Help me fix my ea

Hello the idea is this : only 1 trade per symbol allowed. i use to do it like this: int total = OrdersTotal(); if(total != 0 ) { return(0); // dont trade } else trade but the problem is that i have other open position from manual trades\other EA i need that the ea will open only 1 trade per symbol

Get high price in specific times

hello I want to get the highest and lowest price in the first 10 candels in the 30 min chart(00:00 - 4:30). can someone please post a code? i messed up with Highest() and Lowest() Thanks in advance