PureBytes Links
Trading Reference Links
|
I'd like to make an option to count all weekdays, from a date, whether there
is a holiday or not, if anyone knows how to do that in TS or if it is
possible, please let us/me know.
Enjoy.
Brent
Input: Strtdate(1021231);
Var: count(-1), Sbar(0);
if date = Strtdate then
sbar = currentbar;
if sbar <> 0 then begin
count = count + 1;
Plot1(Count,"Countdaz");
end
Attachment:
COUNT.ELA
Description: Binary data
Input: Strtdate(1021231);
Var: count(-1), Sbar(0);
if date = Strtdate then
sbar = currentbar;
if sbar <> 0 then begin
count = count + 1;
Plot1(Count,"Countdaz");
Attachment:
Description: "end"
|