Search found 7 matches

by dan2fl
Fri Sep 29, 2017 12:50 pm
Forum: Forum
Topic: Limit event to first ocurrence
Replies: 2
Views: 12921

Re: Limit event to first ocurrence

Hi Chris,
Thanks for responding so quickly and for an elegant but simple solution,
Dan
by dan2fl
Thu Sep 28, 2017 4:20 pm
Forum: Forum
Topic: Limit event to first ocurrence
Replies: 2
Views: 12921

Limit event to first ocurrence

Hi There are a number of system scans in Edgerater that refer to an existing condition, rather than a crossover. One example is High Close which generates an event if the close price is higher than every prior close price over the last N bars. The problem I am having is to code this so that only the...
by dan2fl
Sun Aug 27, 2017 7:31 am
Forum: EdgeRater Scripting
Topic: Chhart Script Logic and Math Symbols
Replies: 1
Views: 10129

Chhart Script Logic and Math Symbols

Is there a location that describes the symbols available and their meanings for use in Chartscripts
i.e.
What is the symbol for "or"
What is the meaning of "=="
Thanks for any help.
Dan
by dan2fl
Thu Jul 16, 2015 7:02 am
Forum: Forum
Topic: external data
Replies: 5
Views: 17113

Re: external data

Hi,
You might try saving the CSV file to a TXT file by using a text editor such as Notepad.
I have found that Edgerater often does not accept a CSV file.
Dan
by dan2fl
Sun Jul 05, 2015 7:03 pm
Forum: Forum
Topic: Chart Script Code
Replies: 1
Views: 8561

Chart Script Code

Hi,
I am trying to code:
"Yesterdays Close is less than the High of two days ago"
I thought it rather simple and wrote
Cond1:= C,1 < H,2; but that does not work.
I then tried
Cond1:=REF (C,1) < REF ( H,2);
still with no success.
Does anyone have a suggestion?
Thanks,
Dan
by dan2fl
Tue Mar 24, 2015 3:17 pm
Forum: EdgeRater Scripting
Topic: Scan for SQUEEZE (John Carter)
Replies: 6
Views: 23665

Re: Scan for SQUEEZE (John Carter)

I am trying to create a scan in Edgerater that is based on the TTM Squeeze with a modification. I want to be able to set the number of days that the squeeze has to be valid before a trading signal is sent when there is no longer a squeeze. The approach I am planning to take is to use the width of th...
by dan2fl
Tue Jan 27, 2015 11:37 am
Forum: Forum
Topic: Comments in Chartscript
Replies: 1
Views: 8731

Comments in Chartscript

Hi,
Is it possible to use comments in the chart script code?
I have tried REM and the apostrophe before the comment neither of which work.
Dan