WoOoW no reply, amazing.
i removed the topic, cuz there is no one could answer.
You need a little more patience . . . not everyone is on here 24/7
I was thinking about looking at the code. I said thinking about ... coz it was weekend (we need a holiday and tick won't come on holiday - its on holiday too) + the code require some thinking.
Some user here get reply after 2- 3 or weeks later. So be patient, not everyone here knows the answer and have time to answer.
RaptorUK:
Not really . . . I looked at your post and didn't understand what you mean by " problem is that i have to wait to next day to draw if i put it on chart today " I don't currently have time to trawl through your code to understand what your issue is and I can't easily compile and run it . . .
Do you think it's some bar ahead to the future and not using a ray on trendline.
I was thinking about looking at the code. I said thinking about ... coz it was weekend (we need a holiday and tick won't come on holiday - its on holiday too) + the code require some thinking.
Some user here get reply after 2- 3 or weeks later. So be patient, not everyone here knows the answer and have time to answer.
Do you think it's some bar ahead to the future and not using a ray on trendline.
Hi all, again and sorry for misunderstanding:
take a look to this indicator and you definitely figure what i meant with ("problem is that i have to wait to next day to draw if i put it on chart today")
if you put it on live chart you will not see any thing (and that is the problem) so test it on strategy tester on H1 time frame and here is the code which responsible for the drawing procedure of these trend lines:
and many thanks in advance
Sorry, I'm not going to run pre-compiled code on my test systems, I have no idea what it does . . . if you want to post the complete source code so I can compile it myself I will.
I suspect this is your problem . . .
if (TimeHour(Time[0]) == 0) {
the objects are only drawn at midnight . . . try this change:
if (TimeHour(Time[0]) == 0 || ObjectFind(LR.length+"00") == -1 || ObjectFind(LR.length+"+01") == -1 || ObjectFind(LR.length+"-01") == -1) {
so that the Objects will be drawn at any time if they currently do not exist.
Sorry, I'm not going to run pre-compiled code on my test systems, I have no idea what it does . . . if you want to post the complete source code so I can compile it myself I will.
I suspect this is your problem . . .
the objects are only drawn at midnight . . . try this change:
so that the Objects will be drawn at any time if they currently do not exist.
it works so nice, many many many thanks
but there is a problem which is:
its start drawing right a way from the current candle and this is wrong, what i want when i drop the indicator it has to look for the 00:00 hour of this day and start drawing back to 24 hour, (in tow words):
when i drop the indicator it has to draw the linear regression for the past 24 hours
it works so nice, many many many thanks
but there is a problem which is:
its start drawing right a way from the current candle and this is wrong, what i want when i drop the indicator it has to look for the 00:00 hour of this day and start drawing back to 24 hour, (in tow words):
when i drop the indicator it has to draw the linear regression for the past 24 hours
So fix it . . . what is the problem ? you still haven't posted the whole code.
Raptor sounds like the only one that could code exactly what i have as system . i am impress with the kind of help u gave to turkm.
i kindly need help to code my system into an EA. it uses the linear regression channel, rsi and triangle by line tools.
i want mr raptor to help me do this, i think i have confidence in him, .
i have read many of his comment from other places online.
i dont know if it will be right for me to drop the system write up here for the coding.
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Hi all, again and sorry for misunderstanding:
take a look to this indicator and you definitely figure what i meant with ("problem is that i have to wait to next day to draw if i put it on chart today")
if you put it on live chart you will not see any thing (and that is the problem) so test it on strategy tester on H1 time frame and here is the code which responsible for the drawing procedure of these trend lines:
and many thanks in advance