ADX trader |
Member
|
Registered User |
|
|
|
|
Gender: |
|
Thursday, September 10, 2009 |
Thursday, February 14, 2019 6:36:34 PM |
11 [0.00% of all post / 0.00 posts per day] |
|
I have one WatchList I use for an overview of items in various sectors. It keep it 'manually' sorted. Is it possible to insert blank rows or adjust the height of an individual row to make it easier to monitor?
|
I am looking for a means of sharing a number of personal watchlists, but cannot find any means of doing it in version 17.
|
Works beautifully. I never thought about using the Donchian Channel.
Thanks.
|
Is it possible to look for a divergence using the Klinger Volume Oscillator?
This comes back with 'unkown method KVO'.
C<MIN(C1,10) and KVO.34.55>MIN(KVO1.34.55,10)
|
Thanks. It appears to be more of a sludge hammer approach than I anticipated, but it works.
|
If a first condition is met then I am looking for the second condition to occur within 30 bars.
First condition:
CountTrue(c<c4,9)=9
Second condition:
CountTrue(c<l2,x)=13, where x only looks back to when the original condition was met (+4).
I am assuming that I need a counter.
|
How do I start count after a condition has been met?
counttrue(c<c4,9)=9 and c9>c13
Once the previous condition is true I am looking for the next 30 bars to have a total of 13 bars with c>h2.
I would asume that it would be similar to the following, but with x being a variable based upon the number of bars since the original condition to a maximum of 30.
counttrue(c>h2,x)=13
|
I am migrating from TradeStation 2000i and have used Sequential Setups and Signals for years. Here is my attempt at the code for a TD Seq Sell Setup. How do I change it to paint the price chart?
'|******************************************************************
'|*** StockFinder RealCode Indicator - Version 5.0 www.worden.com
'|*** Copy and paste this header and code into StockFinder *********
'|*** Indicator:TD Seq Sell Setup
'|***************************************************************
Dim counter As Integer
Dim Barsback As Integer
counter = 0
If price.Close(9) < price.Close(13)
For Barsback = 0 To 8
If price.Close(barsback) > price.Close(barsback + 4) Then counter = counter + 1
Next
If counter = 9 Then plot = price.Close
End If
|
Perfect. Thanks.
|
Thanks. However, can I create this indicator (we'll call it CCIMod) and place it on the chart without having to place the CCI, its MA and the ADX on the chart?
Rather than take the variable lengths of 3 and 14 from the chart for the CCI and ADX I would prefer to hard code them into the formula.
I want to be capable of using rules related to CCIMod as it relates to other indicators.
|
|