Welcome Guest, please sign in to participate in a discussion. | Search | Active Topics | |
Registered User Joined: 10/7/2004 Posts: 80
|
I thought I posted this but I cannot find it - please ignore if 2nd time.
Does Blocks update delayed data like TC2000 does?
Also on signal timing, I am running a very simple "If close is less than the price of the last 3 bars then sell" ISRG and IACI are two that should trigger. The sell/short signal does not show up on the charts. I tried to drag the chart to share but I must be doing something wrong.
|
|
Registered User Joined: 5/23/2005 Posts: 40
|
Hi Kram,
Perhaps you can cut and paste your code right here.
|
|
Registered User Joined: 10/7/2004 Posts: 80
|
If Price.Last < Price.Low(1) And _
Price.Last < Price.Low(2) And _
Price.Last < Price.Low(3) Then Pass
this is from one of the trainers. the code is fine. my question concerns same day signals. i have it set to signal zero days - same day. all the buys and sells on the charts work properly except real time same day ones. ISRG for example should show a sell or short today when i run the scan - it does not. why? tell me how to share or paste the chart and i can show you what i am looking at. thx
|
|
Worden Trainer
Joined: 10/1/2004 Posts: 18,819
|
Is your sell condition first in the priority of rules? If not, another rule above can be met and your sell rule will never be reached (or triggered).
- Craig Here to Help!
|
|
Registered User Joined: 10/7/2004 Posts: 80
|
QUOTE (Craig_S) Is your sell condition first in the priority of rules? If not, another rule above can be met and your sell rule will never be reached (or triggered).
Thanks I found out that when running end of day data the signal will not show up until the update of the next day.
|
|
Worden Trainer
Joined: 10/1/2004 Posts: 18,819
|
Glad to hear it.
- Craig Here to Help!
|
|
Guest-1 |