Forum

Need help in writing Code to find the before price of the current BID/ASK price.

Hi all: I am too new to MQL4 programming . Having problem with my program. I do appreciate if anyone can assist me. 1. I wish to find the before price of the current BID/ASK price. I do not know which code shall i use. Price_OPEN or Open[1]? The before price and BID price is within then same bar. 2

EA programmer needed.

Hi: I have an idea for a simple EA but i am not good in programming. So, i am wondering if anyone can help me develop this EA? regards, miki

Can someone advice me on my error?

Hi : Good day. Please kindly advice. Below is my program, i knew it is not done properly. start () { double tick_now, tick_prev=0; int cnt=0; tick_now = BID; If ( tick_now > tick_prev) { cnt++; // this is the problem..... i wish to count how many times, present price more than previous price. }