PureBytes Links
Trading Reference Links
|
> What happened to this list? It has denigrated to a name-calling, finger-
> pointing, you said-she said site.
I don't know what denigrated means but some people seem to enjoy it.
> Now can anyone help me with ela code for SC or TS to establish how many shares
> it takes to move a stock one point?
no code but the scheme:
VolumeSum=0;
Counter = 0;
while (Counter <= maxbarsback) and (Close[Counter] +1 >
Close) and (Close[Counter] -1 < Close) do begin
VolumeSum = VolumeSum + Volume;
Counter = Counter + 1;
end;
IF Counter > Maxbarsback and (Close[Counter] +1 >
Close) and (Close[Counter] -1 < Close) then errorincreasemaxbars
else VolumeSum
hope its correct - no profit guarantees and the usual disclaimers
Gerrit Jacobsen
http://www.tickscape.com
|