I've written some code that automatically draws my Fibo retracement between the nearest whole numbers, but I've got it sitting on top of the current candle, and I'd like it to be offset to the right of the current candle. I'm really hazy on the time coding. Here's what I have:
What can I use instead of Time[0] to get it to place the beginning and end of the Fibo to the right of the current candle? I realize this is probably elementary, but I am still learning, and can't seem to find the right question to put into the MQL4 manual to get the right answer.
Inserted Code
ObjectCreate(fibo, OBJ_FIBO, 0, Time[0], fibStart , Time[0], fibEnd);
What can I use instead of Time[0] to get it to place the beginning and end of the Fibo to the right of the current candle? I realize this is probably elementary, but I am still learning, and can't seem to find the right question to put into the MQL4 manual to get the right answer.