Friday, December 25, 2009

StockFinder

RealCode Programmers Reference.pdf

- what stockFinder CAN NOT do
- percentage the # of bars closing below a moving average for a specified number of bars.
- good Realcode examples - by Kuf

- '# LRS21 = indicator.linearRegressionSlope


- http://tradingourway.com/page4.html - the above guy site, it has 'real time' pattern recognation s/w
- has .Net basics, indicators, paint etc..
- Plot = Price.High(1) – Price.Low(1)
Plot= Price.TradeRange(1)

- Calculate the Min Low for price over the last 10 bars, using a loop
Dim calculatedMin as single = single.MinValue
For i as integer = 0 to 9
Max = System.Math.Min(calculatedMin,Price.Low(i)) -- system ways of fiding Min
Next i
Plot = calculatedMin

Calculate the Min Low for price over the last 10 bars using the MinLow function
Plot = Price.MinLow(10)

Tlin.MinLow(5) -- this is working Tredline is Tlin
------------
Using RealCode with BackScanner
Build a realcode indicator to determine each condition then plot a value for each one, such as Buy = 1 Sell =2 Cover= 3 Sell short= 4 Nothing = 0 Then create a rule to test for each condition. Then place the rules in Backscanner. You can also use the Label to place the buy/sell on the chart.
Build a realcode indicator to determine each condition then plot a value for each one, such as

Buy = 1
Sell =2
Cover= 3
Sell short= 4
Nothing = 0

Then create a rule to test for each condition. Then place the rules in Backscanner.

You can also use the Label to place the buy/sell on the chart.
-------------

No comments: