Skip to search.
rightedge-ats

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

  Messages Help
Advanced
Messages 46 - 75 of 723   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
46 Rob
spiraltime1 Offline Send Email
Mar 7, 2007
3:38 pm
I have tried to run the Keltner Channel strategy in RE but I am getting a compile error: Open is not a member of Rightedge.Common.Position, referring to line...
47 Peter Gum
phgyh Offline Send Email
Mar 7, 2007
4:09 pm
Hi Rob, It looks like the file from the group is down level. I can't test my upgraded version while the market is open because I am using live data. But I can...
48 Robert
spiraltime1 Offline Send Email
Mar 7, 2007
6:11 pm
Hi Peter I have managed to fix a couple of errors by looking at this example, but it still does not like the whichever.open=true test. It would be great if you...
49 Daniel Plaisted
dsplaist3d Offline Send Email
Mar 7, 2007
6:31 pm
We reworked our position manager / broker architecture since Peter wrote that system. There is no longer an Open flag for a position. The simplest way to...
50 rightedge-ats@yahoogr... Send Email Mar 8, 2007
12:32 am
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the rightedge-ats group. File : /VB...
51 Peter Gum
phgyh Offline Send Email
Mar 8, 2007
12:38 am
I have uploaded a revised version of this strategy. It compiles and runs as of build 291. I tested it against Yahoo historical data for anst, dyn and bmrn...
52 billb_ Offline Send Email Mar 8, 2007
1:25 am
Pete, I usually run my systems against a couple hundred symbols and slice it across many time frames. I think we're in a very nice situation at this point...
53 Peter Gum
phgyh Offline Send Email
Mar 8, 2007
11:28 am
Hi Bill, keltnerCase1 is really a demonstration project. It reflects my learning experience and illustrates various aspects of how to use RE. I posted it so ...
54 rightedge-ats@yahoogr... Send Email Mar 8, 2007
12:10 pm
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the rightedge-ats group. File : /C#...
55 Peter Gum
phgyh Offline Send Email
Mar 8, 2007
12:23 pm
I have uploaded a more robust and complete strategy (the program file is named regress2.cs, which is ok). There is a .doc file that more fully describes what...
56 Peter Gum
phgyh Offline Send Email
Mar 8, 2007
2:17 pm
I run live data against an IB account to collect 15 minute bars for 20 or 30 tickers. This is for back testing. When I run live system, only 6 to 12 stocks are...
57 Peter Gum
phgyh Offline Send Email
Mar 10, 2007
6:45 pm
This is a follow-up to the previous message about refreshing MS Access data. In query design mode establish 3 columns using the BarData table from the ...
58 Peter Gum
phgyh Offline Send Email
Mar 12, 2007
5:58 pm
If you are like me you have a handful of folders. Each folder typically has a few tickers that are the same in other folders. Over time you add and remove...
59 Peter Gum
phgyh Offline Send Email
Mar 15, 2007
11:51 am
The strategy repository at RE (Trading Systems <http://www.rightedgesystems.com/TradingSystems.aspx> ) is a good source of information about how to use RE. One...
60 Peter Gum
phgyh Offline Send Email
Mar 16, 2007
5:54 pm
Here is a reference to a long list of indicators, with descriptions and usually the calculations: Stator...
61 Peter Gum
phgyh Offline Send Email
Mar 19, 2007
11:34 am
I have been tinkering with the above strategy and have replaced the old version in the files section. (Again, it is not an especially effective strategy....
62 Peter Gum
phgyh Offline Send Email
Mar 22, 2007
7:21 pm
Some links: - A huge collection of both indicators and full strategies: http://trader.online.pl/ - An interesting look at hedge ...
63 Peter Gum
phgyh Offline Send Email
Mar 24, 2007
6:41 pm
The April 2007 of Technical Analysis of Stocks and Commodities (TASC) has an article (p. 26) on an enhancement to the Rate of Change (ROC) indicator. More...
64 Peter Gum
phgyh Offline Send Email
Mar 25, 2007
1:39 pm
Not to be deterred, I see that it is not possible to subtract one series from another directly in RE. Borrowing ideas from strategies posted on the RE website...
65 Daniel Plaisted
dsplaist3d Offline Send Email
Mar 25, 2007
2:32 pm
When creating a series manually, it is quite easy to get the series misaligned. In this case, it is probably because you have the Lead Bars set to something...
66 Peter Gum
phgyh Offline Send Email
Mar 25, 2007
3:44 pm
Thanks, Daniel! I'm making real progress on this and learning a lot along the way. (It is interesting that the .Add for adding a bar does not show up under ...
67 Peter Gum
phgyh Offline Send Email
Mar 25, 2007
7:27 pm
Need a little help here. The following does not work: // Create spread series directly for each symbol. Populated in NewBar. Series["diff"].CreateSeries(); ...
68 Peter Gum
phgyh Offline Send Email
Mar 25, 2007
9:07 pm
I looked this strategy up on the Wealth Lab web site. As a matter of information, here is another version of it that dynamically selects the best correlated of...
69 Daniel Plaisted
dsplaist3d Offline Send Email
Mar 25, 2007
9:24 pm
You can't use a user-created series as an input to an indicator. Indicator values for the current bar are calculated before your code for NewSymbol / ...
70 Peter Gum
phgyh Offline Send Email
Mar 26, 2007
12:48 am
Thanks Daniel. There is a lot RE does well as it stands. But further, as we have been covering in these posts, there is also great flexibility to work around...
71 Peter Gum
phgyh Offline Send Email
Mar 26, 2007
2:35 pm
This is the series: // Create spread series directly for each symbol. Populated in NewBar. Series["diff"].CreateSeries(); Series["diff"].ChartPaneName =...
72 Peter Gum
phgyh Offline Send Email
Mar 26, 2007
6:44 pm
I see I am beating my head against the same problem. You can put an item in the series this way: SystemData.Series["diff"][symbol].Add(spread);// Add 'bar'...
73 Daniel Plaisted
dsplaist3d Offline Send Email
Mar 26, 2007
7:29 pm
Don't use the "Series" class for your variable types. I'm not even sure if that will compile. You want to use List<double>, like this: List<double> spreadser...
74 Peter Gum
phgyh Offline Send Email
Mar 26, 2007
8:55 pm
Thanks Daniel! I'm pleased to see that it is something that simple that I overlooked. (It is probably the only thing I didn't try [grin]). The strategy is...
75 rightedge-ats@yahoogr... Send Email Mar 26, 2007
11:12 pm
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the rightedge-ats group. File : /C#...
Messages 46 - 75 of 723   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help