tommystam |
Gold User, Member, TeleChart
|
Registered User |
|
|
|
|
Gender: |
|
Thursday, January 19, 2012 |
Monday, April 2, 2012 9:59:54 AM |
13 [0.00% of all post / 0.00 posts per day] |
|
Hello, I am clicking on Add Indicator on a chart, than I click on Write Indicator Formula, than I copy paste your code and it says Formula Error in red?? Why isnt this working?
This is the formula I am copying/pasting:
Static Sum As Single
Static SumSq As Single
Static BB As Single
Static Keltner As Single
If isFirstBar Then
Sum = 0
SumSq = 0
Keltner = 0
Else
Sum += Price.Last
SumSq += Price.Last^2
Keltner += 1.5*(System.Math.Max(Price.High,Price.Last(1)) - _
System.Math.Min(Price.Low,Price.Last(1)))/20
If CurrentIndex >= 21 Then
Sum -= Price.Last(20)
SumSq -= Price.Last(20)^2
Keltner -= 1.5*(System.Math.Max(Price.High(20),Price.Last(21)) - _
System.Math.Min(Price.Low(20),Price.Last(21)))/20
End If
End If
If CurrentIndex >= 20 Then
BB = 2*((SumSq - Sum^2/20)/20)^.5
Plot = BB/Keltner
Else
Plot = Single.NaN
End If
|
Is it possible to have this index somehow, and is there any condition or scan, etc that can give you a stock's EV (Enterprise Value) or a sales minus capitalization indicator?
|
Great! Thank you!
|
Hello,How can I get the Market Breadth, Advance Decline Line (number of up ticking stocks minus the number of down ticking stocks)(SP500) and the TRIN or Arms Index indicators, as well as ATR for SP500 stocks?Also, is there a quick way to add a sector watch list?Thank you.
|
Hi, can you please give me 2-3 useful volume indicators or oscillators? Thx
|
I am using TC2000 Version 12 btw.
|
Ouch, sorry Bruce, I'm new on the boards and thought this section was for scanning advice/talk. I'm just a gold subscriber at the moment, if that is allowed to upload on premium only, please let me know, thanks!
|
I would like to know, (if possible), how many times per day, the Ema of any stock's SMI Ergonic Indicator crosses over, upwards and downwards of course. Is it possible to calculate all those breaks?Thank you.
|
Hi, Is there any way to search for stocks that trend better than others, without too many shakeouts and false breaks?
|
Nevermind, I just realized that I can scan my list now, thx.
|
|