Download software Tutorial videos
Subscription & data-feed pricing Class schedule


New account application Trading resources
Margin rates Stock & option commissions

Attention: Discussion forums are read-only for extended maintenance until further notice.
Welcome Guest, please sign in to participate in a discussion. Search | Active Topics |

Profile: jas0501
About
User Name: jas0501
Groups: Gold User, Member, TeleChart
Rank: Registered User
Real Name:
Location
Occupation:
Interests:
Gender: Unsure
Statistics
Joined: Saturday, December 31, 2005
Last Visit: Tuesday, June 4, 2019 1:01:37 PM
Number of Posts: 2,499
[0.85% of all post / 0.37 posts per day]
Avatar
Last 10 Posts
Topic: Using Deep Learning Neural Network models for trading
Posted: Monday, June 11, 2018 9:46:39 PM

FYI:

A google search of: deep learning technical analysis yields this TensorFlow video

https://www.youtube.com/watch?v=ftMq5ps503w

The code is avilable for those looking the explore deep learning via TensorFlow

Another paper

Stock price prediction using LSTM, RNN and CNN-sliding window model https://www.researchgate.net/publication/321503983_Stock_price_prediction_using_LSTM_RNN_and_CNN-sliding_window_model

The paper is measuring the absolute value of the price difference of price vs. the prediction divided by the price. It isn't developing a trading plan and measuring profits which I think would be more relevant.

Topic: FYI:Backtesting overfitting article
Posted: Sunday, April 27, 2014 9:29:40 PM
While the literature on regression overfitting is
extensive, we believe that this is the first study
to discuss the issue of overfitting on the subject
of investment simulations (backtests) and its
negative effect...

from   http://www.ams.org/notices/201405/rnoti-p458.pdf

 

Topic: Allocating more memory to realcode
Posted: Wednesday, February 5, 2014 4:21:03 PM

Converting from 32-bit to 64-bit is not just a matter of a recompile. The are numerous MS com controls that have not yet and will not be converted to 64-bit.  This requires installing the 32-bit version of MS Office if any of these controls are used.

I expect the 64-bit conversion  of Stockfinder may require simliar effort for its controls.

 

==================

Here was my wish list back in N0V 2010 from 

http://forums.worden.com/default.aspx?g=posts&t=49188

=============================
As to "we'll soon be working on StockFinder 5.1, which will tackle all documented BackScanner issues".   Can this list be published so that users may comment on omissions?

Never happened....

I know it is not policy to reveal features, except by release, however it would be good to know what the general game plan is for the backscanner. Is there any intention of supporting any of the following?:
 

1.     A way of saving the results that permits reconstruction or at least realization  of what the backscan rules were at the time it was run.

2.     Improved run to run results tracking

a.     Tabbed scan results, so that one can appreciate result improvements

b.     The ability to provide description with the scan results. Typically consecutive scans are run tweaking settings. There is no easy way to review multiples runs and appreciate what caused the improvements

3.     Money management with support for

a.     Tie breaker, for picking which trades to execute when multiple opportunities are presented

b.     Margin

c.     Minimum/maximum  setups per bar

d.     Minimum/Maximum trades per bar

e.     Maximum open trades

f.      Multiple Trade sizing models

4.     A standard template and support for user specified result templates. This would permit users to compute their own metrics as in Sharpe, Kelly, RAR,  etc. etc

a.     For scan results

b.     For MM results

c.     For optimization run summaries

5.     Intermediate results display of backscan results, to permit early termination if the results don’t look promising. This is particularly helpful when running long scans.

6.     Equity curve display during backscan

7.     Interruption of backscan with partial results retained

8.      Entry and exit @Price

9.     Realcode access to Trade information

10.   Saving backscan trade sets permitting running vai realcode post scan

a.     Money management studies

b.     Entry studies

c.     Exit studies

d.     Correlation studies

11.   For saved backscan trade sets, permitting additional indicator values to be associated with each trade. For example @ trade entry what various ATR values were.

12.   bars in Trade variable in realcode

13.   realcode Loop support for both backscan and Money Management  runs to permit optimization

14.   For optimization

a.     Multiple formats for stating variable values

                                          i.     A set, as in  [5,7,13,23,42]

                                         ii.    A stepped range, x to y stepped by z, as in (5 to 30 by 5)

b.     Realcode access to variable assignments.

15.   Standard IO for reading and writing results. This would permit post processing of run results and adjustments of parameters for scans or MM runs.

16.   Realcode support for multiple positions with scaling into and out of positions

Topic: pcf language
Posted: Wednesday, January 8, 2014 1:52:00 PM

 

also see

Open topic with navigation as mentioned at the end of the Personal Criteris Language page

 

Topic: LRS
Posted: Wednesday, January 8, 2014 1:39:54 PM

QUOTE (brihous)

How can I make indicators for price being above the linear regression slope 20(lrs) and another indicator with price being below lrs .  The lrs is already on my charts however when I try to create a condition with price history the lrs does not show up in the pull down.  I attempted to do it in real code however it keeps giving me expression error.  This is what I tried.

 

if price.close > # lrs then pass.

 

The expression error is the # lrs which is not a legal variable name.

 

Topic: export watchlist from realcode
Posted: Sunday, December 15, 2013 10:19:43 PM

Export a plot that just prints close on lastbar should give you something to work with

 

if lastbar then
    plot close
endif

 

Topic: Does anyone have a good memory on when they began to learn stock trading?
Posted: Saturday, November 16, 2013 11:52:47 AM

There are the charts and the systems of infinite variety. The truely hardest thing to learn is to manage your psyche. Lack of impulse control and "if only" thinking can drain you enthusiasm and your trading account in no time.

  1. Find an approach the resonates with your personality. This is a never ending process.
  2. Experiece the mechanics of trading for x trades using the approach outlined below. 
  3. After x trades evaluate your performance and assess if you have the tempermant to be successful and that you can sleep and night and enjoy the process.
  4. Figure out what needs to change in order to improve.
  5. Approach Outline
    • candidate selection
    • plan the trade
    • trade the plan
      • position size
      • entry
      • exit
    • for each trade do post mortem alalysis

If you don't plan the trade, and trade the plan, then post mortem analysis is impossible. The hardest thing it to learn to control your own actions. Keep track of what you did and didn't do during the process and tally each category. Work on reducing the frequency of the top shortcoming and give yourself credit for the things you did right. Rinse and repeat.

A few mistake categories:

  • Entered without an exit strategy
  • Failed to exit per plan
  • Added to a bad position, hoping...
  • Didn't check the fundamentals
  • Forgot about the quarterly report or dividend
  • entered a position that didn't fully qualify ( volume, volatility, trend, etc.)
  • didn't do post mortem analysis
  • indecision on entry
  • indecision on exit
  • bought in a bad industry sector
  • changed the plan mid-trade
  • too many open trades
  • etc.
  • etc.
  • etc.

 

Topic: The basic of trading - how to find the regular stock ?
Posted: Sunday, November 10, 2013 4:39:20 PM

I'll confess I haven't closely read the entire thread. I do want to mention on point regarding "easy to see" versus "not so easy to program".

I'll use cup and handle as an example.  One can look at a chart and see the formation easily. The difficulty is that each cup and handle spans a different number of bars, so writing code that can recognize the formation is not easy. Visually out brains see the pattern without needing to consider the bar count. Programming the code "sees" a bar at a time and can remeber things, but pattern construction and recognition  is hard.

------------------

When defining the end points that defines the trend line, one needs to decide how many bars to consider, the width. One also needs to decide how long should that trend be considered relevant. If the end point  is x bars old is the trendline still applicable, or are the more recent events caring more weight than an "old" trendline.

-------------------

Another point, often can  take a chart and draw historical trend lines and see how well the approach  "predicts" things.  One has a hard time quantify all the simlar trend lines that don't match the prediction. The viewer can easily see the goodness. Using stockfinder to keep score will provide the performance measure. Don't let these easy to see confirmations give a flawed approach undeserved merit.

--------------------

An example of being tricked by the plot is the zig-zag plot which nicely points out tops and bottoms.  It is a flawed trading mechanism as the corners are defined by a percentage, which is a look ahead of n bars. Thus it depends on future information. This is often how the brain constructs potentially viable approachs when looking at historical charts. There is an unintentional look ahead. Encoding the rules and backtesting with Stockfinder will provide the win%.

------------------------

Once Stockfinder gives you a viable approach, based on backtesting results, one last step would be to compare the results with the same number of random trades. A viable strategy needs to outperform random trades by a good margin. See http://forums.worden.com/default.aspx?g=posts&t=45239 for an example of this.

 

Topic: Debugging Support
Posted: Tuesday, November 5, 2013 8:18:24 PM

This might be it:: Accidental comment 
'sinceGap(i) += 1

For i As Integer = 1 To System.Math.Max(gapnumber, 1)  'Increments Sincegap here
    If Gapnumber = 0 Then 
        Exit For
    Else If Gapclosed(i) = 0 Then
        'sinceGap(i) += 1
        'Label = sincegap(1)=0
        'label = gapclosed(1)=0
        sincegap(i) = sincegap(i) + 1
       'Label = Sincegap(1) = 1
     End If
Next
'Label = sincegap(1)=1

 

A couple minor optimization comments:

1. Avoid divides and multiplies when possible.
Replace MinGapPerc / 100 with gapSize

Dim gapSize as single

If isfirstbar
      gapSize = MinGapPerc / 100 
...
...
Else If (1 - Price.High / Price.Low(1)) >= gapSize And Price.High < Price.Low(1) Then

========================================

2. The only way the gapSize can be statisfied is if Price.High < Price.Low(1)  so you don&#39;t need to check if High is less than yesterday&#39;s low yielding a simplified expression

Else If (1 - Price.High / Price.Low(1)) >= gapSize then

 

Topic: "edit condition" not showing all "userinput" fields
Posted: Monday, November 4, 2013 2:32:49 AM

One approach would be to code multiples into a single parameter and then parse the values

 

# Parms = UserInput.string = "15:1:0:0:25"