Registered User Joined: 9/10/2009 Posts: 53
|
I've noticed that there are no longer any entries for Stockfinder from Worden in the Traders' Tips section of S&C magazine.
There is coding support for TC2000, but TC2000 is of no use for daytrading as it only supports $TICK at delayed level.
Is Worden no longer going to support S&C indicators for Stockfinder?
|
Administration
Joined: 9/30/2004 Posts: 9,187
|
The March issue was about a simple scan/sort condition. The StockFinder equivalent for RealCode conditions are:
Three-Bar Positive Inside Bar
If price.close > price.close(1) andalso price.low(2) < price.low(1) andalso _
price.high(1) < price.high(2) andalso price.close(2) > price.close(3) then pass
Three-Bar Negative Inside Bar
If price.close < price.close(1) andalso price.low(2) < price.low(1) andalso _
price.high(1) < price.high(2) andalso price.close(2) < price.close(3) then pass
We did not publish a tips article in the April issue on cup formations.
The Volume Zone Oscillator discussed in the May issue has been added to the StockFinder indicator library along with the Volume Price Oscillator for the upcoming June issue.
While we may not use StockFinder in the article to illustrate a particular indicator, we will continue to add them to StockFinder as well.
|