﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>RightEdge Forums / General / General Discussion </title><generator>InstantForum.NET v4.1.4</generator><description>RightEdge Forums</description><link>http://www.rightedgesystems.com/forums/</link><webMaster>rightedge@yyesoftware.com</webMaster><lastBuildDate>Fri, 12 Mar 2010 07:49:02 GMT</lastBuildDate><ttl>20</ttl><item><title>Roadmap to future developments</title><link>http://www.rightedgesystems.com/forums/Topic11147-7-1.aspx</link><description>Hi,&lt;br&gt;&lt;br&gt;Is there a place where I could find the roadmap to future developments for RE ?&lt;br&gt;&lt;br&gt;I am particularly interested in the following features which could be implemented and was wondering if and when they would be :&lt;br&gt;&lt;br&gt;- multithreading/multiprocessor support : it looks like RE does not use all the processors/cores present on recent machines during heavy backtests/optimization processes. Is there a plan to change that ?&lt;br&gt;&lt;br&gt;- walk-forward optimization : is there a plan to implement such kind of optimization/backtesting routine ?&lt;br&gt;&lt;br&gt;Thanks in advance,&lt;br&gt;&lt;br&gt;Pierre</description><pubDate>Fri, 12 Mar 2010 04:01:13 GMT</pubDate><dc:creator>pch</dc:creator></item><item><title>MultiSymbol and MultiFrequency project</title><link>http://www.rightedgesystems.com/forums/Topic11063-7-1.aspx</link><description>Hi,&lt;br&gt;&lt;br&gt;I am trying to port to RE a project I had developed with EL and Multicharts.&lt;br&gt;This project references some symbols as signal generators (I have taken here the example of the DJStoxx600 ^STOXX) and makes investment decisions on other symbols.&lt;br&gt;Here is the code :&lt;br&gt;&lt;br&gt;public class MySymbolScript : MySymbolScriptBase&lt;br&gt;{&lt;br&gt;	Frequency DailyFreq;&lt;br&gt;	static string symbolName;&lt;br&gt;	private HistoricalVolatility vol;&lt;br&gt;&lt;br&gt;&lt;br&gt;	public override void Startup()&lt;br&gt;	{&lt;br&gt;		// Perform initialization here.&lt;br&gt;		symbolName = "^STOXX";&lt;br&gt;	    DailyFreq = GetFrequency(BarFrequency.Daily);		&lt;br&gt;		vol = new HistoricalVolatility(15,220,OtherSymbols[symbolName].DailyFreq.Close); // line 33 of Test_MultiFreq.cs&lt;br&gt;&lt;br&gt;	}&lt;br&gt;&lt;br&gt;	public override void NewBar()&lt;br&gt;	{&lt;br&gt;		// Put your trading code here&lt;br&gt;		if ((Symbol.Name == symbolName) || Bars.Count &lt; 10) return;&lt;br&gt;		&lt;br&gt;	}&lt;br&gt;&lt;br&gt;When I try to run the attached project, which does virtually nothing, I have no problem selecting the ^STOXX as signal and any equity of the Nasdaq 100 for investment. The project executes correctly and does nothing as expected. The same happens when I run it on the ^STOXX50E (EuroStoxx50) as investment. It runs well.&lt;br&gt;But when I try the DAX30 for instance (^GDAXI), or any other index (^GSPC, ^NDX), then I receive an error which I don't understand.&lt;br&gt;Here is the message sent by RE :&lt;br&gt;&lt;br&gt;An exception of type System.NullReferenceException was thrown.&lt;br&gt;Object reference not set to an instance of an object.&lt;br&gt;   at MySymbolScript.Startup() in c:\Users\PCH\Documents\Investissements\RightEdge\Projets\Test_MultiFreq\Test_MultiFreq.cs:line 33&lt;br&gt;   at MySystemBase.Startup(SystemData data) in c:\Users\PCH\Documents\Investissements\RightEdge\Projets\Test_MultiFreq\BaseClasses.cs:line 23&lt;br&gt;   at RightEdge.Common.Internal.SystemRunner.Startup()&lt;br&gt;   at RightEdge.Shared.SystemWrapper.InitializeModule(SystemData systemData, SystemRunSettings runSettings, ServiceFactory brokerFactory)&lt;br&gt;   at RightEdge.Shared.SystemWrapper.RunSystem(SystemData systemData, SharedSystemRunData runData, ServiceFactory brokerFactory)&lt;br&gt;   at RightEdge.Shared.SystemWrapper.RunSystem(String filename, ServiceFactory brokerFactory, PluginReference dataStore, SystemParameters systemParameterOverrides)&lt;br&gt;   at RightEdge.Shared.SystemWrapper.RunSystem(String filename, ServiceFactory brokerFactory, PluginReference dataStore, SystemParameters systemParameterOverrides)&lt;br&gt;   at RightEdge.Shared.TradingModuleWrapper.Run(String filename, ServiceAppDomainFactory brokerFactoryFactory, PluginReference dataStore, SystemParameters systemParameterOverrides)&lt;br&gt;   at RightEdge.Shared.TradingModuleWrapper.RunSystem(SharedSystemRunData systemRunData, ServiceAppDomainFactory brokerFactoryFactory, Func`2 dataStoreFactory)&lt;br&gt;   at RightEdge.SystemProgress.InitAndRunSystem()&lt;br&gt;Could you please help ?&lt;br&gt;&lt;br&gt;If I change the instruction :&lt;br&gt;		vol = new HistoricalVolatility(15,220,OtherSymbols[symbolName].DailyFreq.Close);&lt;br&gt;to &lt;br&gt;		vol = new HistoricalVolatility(15,220,DailyFreq.Close);&lt;br&gt;then the project runs well on DAX as well.&lt;br&gt;&lt;br&gt;Removing the reference to DailyFreq does not seem to help.&lt;br&gt;Thanks in advance for your assistance,&lt;br&gt;&lt;br&gt;Pierre&lt;br&gt;</description><pubDate>Sun, 07 Mar 2010 16:29:07 GMT</pubDate><dc:creator>pch</dc:creator></item><item><title>Fill on the same bar close not working for me...</title><link>http://www.rightedgesystems.com/forums/Topic11145-7-1.aspx</link><description>Hello, &lt;br&gt;&lt;br&gt;I want to simulate fills on the close of the same bars on which a position is sent for execution in the RE paper trader. I looked at all the other threads that treated this issue, implemented the code and suggestions but still dont seem to be able to get where I want to. I use daily bar data and daily system frequency. I simply like to get the price on the fill of the same bar when the order was executed due to a signal that was triggered on the very same bar. With below code I get filled on the open of that bar which is very strange and would definitely mean I am forward looking. I just want to get filled on the close of the same bar as the signal and execution for both, new open and closing orders.&lt;br&gt;&lt;br&gt;Could you please have a look and suggest what I may be doing wrong?&lt;br&gt;&lt;br&gt;thanks a lot&lt;br&gt;Brian&lt;br&gt;&lt;br&gt;SYSTEM CLASS:&lt;br&gt;&lt;br&gt;public override void Startup()&lt;br&gt;{&lt;br&gt;SystemData.CreateTicksFromBars = true;&lt;br&gt;SystemData.EnableTradeOnClose = true;&lt;br&gt;SystemData.BarClosing += BarClosing;&lt;br&gt;}&lt;br&gt;&lt;br&gt;public void BarClosing(object sender, NewBarEventArgs args)&lt;br&gt;{&lt;br&gt;foreach (Symbol symbol in args.Symbols)&lt;br&gt;{&lt;br&gt;SymbolScripts[symbol].BarClosing();&lt;br&gt;}&lt;br&gt;}&lt;br&gt;&lt;br&gt;SYMBOL CLASS:&lt;br&gt;&lt;br&gt;public void BarClosing()&lt;br&gt;{&lt;br&gt;//Trade Entries&lt;br&gt;TradeExecution.TradeEntry(SystemData, settings, Symbol, Bars, positionList);&lt;br&gt;}&lt;br&gt;&lt;br&gt;Trade Entry is a function within I send a market order.</description><pubDate>Fri, 12 Mar 2010 00:23:53 GMT</pubDate><dc:creator>bbmat173</dc:creator></item><item><title>spread trading</title><link>http://www.rightedgesystems.com/forums/Topic11141-7-1.aspx</link><description>Hi.  Is it possible in RightEdge to define spreads (for inst. +NATGAS-CRUDE OIL) and chart  them (the spread, not the single legs)?</description><pubDate>Thu, 11 Mar 2010 11:32:09 GMT</pubDate><dc:creator>fdanil</dc:creator></item><item><title>How are stops and limit orders filled in the RE backtest?</title><link>http://www.rightedgesystems.com/forums/Topic11058-7-1.aspx</link><description>I would like to confirm whether I have a clear understanding of how stop and limit orders are treated in the RE backtest.&lt;br&gt;&lt;br&gt;I run on a 3hr system frequency and use hourly fx data.  Lets use an example. I short GBP/AUD at 2.0700 at 6pm. I put in a buy stop order above the entry (2.0750) and a take profit limit buy order below the entry (2.0650). At the next system frequency bar 3 hours later the price is 2.0610 and the system shows that it took profit at 2.0650, my take profit limit level. &lt;br&gt;&lt;br&gt;My question is, how does the system know whether the stop or the limit order level was hit first? I get the same result regardless of whether the high of that 3 hr bar was above or below the stop loss level of 2.0750. How can this be? I mean logically the system has no way to figure the path the price took to get from my entry to the close of the next system frequency bar. In my opinion the logic should at the very least be that I get filled at the price of the closing bar and not at my take profit limit level. &lt;br&gt;&lt;br&gt;I got the above results from setting the generateTicksFrom Bars to true and even from looking at the hourly bars that make up the 3 hr system frequency bars it was not discernible for the system to deduce whether the stop or take profit level has been hit first. &lt;br&gt;&lt;br&gt;Another issue is what difference does it make to my specifically described scenario whether setting "generateTicksFromBars" to true or false? &lt;br&gt;&lt;br&gt;</description><pubDate>Sun, 07 Mar 2010 09:56:23 GMT</pubDate><dc:creator>bbmat173</dc:creator></item><item><title>Expired future contract data via IB</title><link>http://www.rightedgesystems.com/forums/Topic11062-7-1.aspx</link><description>Is it possible to download expired futures contracts into RE yet?  IB offer this data so it would be nice if we could download it.</description><pubDate>Sun, 07 Mar 2010 15:48:33 GMT</pubDate><dc:creator>blousetrader</dc:creator></item><item><title>no open a position in the night market</title><link>http://www.rightedgesystems.com/forums/Topic11088-7-1.aspx</link><description>&lt;SPAN class=postbody&gt;Hi,My system is base on EOD, close price, etc. &lt;BR&gt;&lt;BR&gt;The product has day and night market. &lt;BR&gt;&lt;BR&gt;how can I get the every day market close price? and no open a position in the night market? &lt;BR&gt;&lt;BR&gt;Kind Regards&lt;/SPAN&gt;</description><pubDate>Mon, 08 Mar 2010 09:38:45 GMT</pubDate><dc:creator>qichxi</dc:creator></item><item><title>for live data give error</title><link>http://www.rightedgesystems.com/forums/Topic11029-7-1.aspx</link><description>If I try running a live system with "None" specified as a real time data provider, I get an error. The system continues to run though. This is the error:&lt;br&gt;&lt;br&gt;There were errors starting live data retrieval for the following symbols:&lt;br&gt;A: A service with the specified name () does not exist.  It may have been renamed.  Please set the new service name by configuring this folder.&lt;br&gt;&lt;br&gt;In this case, "A" was the only symbol checked in a watchlist when I ran the live system. If there are more, I get a similar error for each symbol.</description><pubDate>Thu, 04 Mar 2010 11:47:17 GMT</pubDate><dc:creator>Zora</dc:creator></item><item><title>RightEdge 2010 and Optimization</title><link>http://www.rightedgesystems.com/forums/Topic11046-7-1.aspx</link><description>I have a demo version of RightEdge (2008 ed 1) and was thinking of purchasing, wondering if you added an optimization plug-in as you seemed to be planning to.&lt;/P&gt;&lt;P&gt;Thanks,</description><pubDate>Fri, 05 Mar 2010 15:18:09 GMT</pubDate><dc:creator>imcdonald</dc:creator></item><item><title>Trade times are not on bar boundaries</title><link>http://www.rightedgesystems.com/forums/Topic11036-7-1.aspx</link><description>In a 15min bar system, I don't understand how the trade times are not on 15min boundaries when Tick-Level Simulation = false. Below is a sample of backtest trades&lt;br&gt;&lt;br&gt;Could you please explain?&lt;br&gt;&lt;br&gt;&lt;br&gt;[b]Open Date	Close Date&lt;br&gt;26/02/2010 1:05:00	26/02/2010 1:10:00&lt;br&gt;26/02/2010 1:20:00	26/02/2010 2:25:00&lt;br&gt;26/02/2010 4:55:00	26/02/2010 5:10:00&lt;br&gt;26/02/2010 7:00:00	26/02/2010 7:05:00&lt;br&gt;26/02/2010 7:20:00	26/02/2010 7:44:59&lt;br&gt;26/02/2010 10:05:00	26/02/2010 10:10:00&lt;br&gt;26/02/2010 10:35:00	26/02/2010 10:44:59&lt;br&gt;26/02/2010 19:55:00	26/02/2010 20:25:00&lt;br&gt;26/02/2010 20:40:00	26/02/2010 20:55:00&lt;br&gt;27/02/2010 0:55:00	27/02/2010 1:10:00&lt;br&gt;27/02/2010 1:25:00	27/02/2010 1:30:00&lt;br&gt;27/02/2010 5:10:00	27/02/2010 5:25:00&lt;br&gt;1/03/2010 17:20:00	1/03/2010 17:29:59&lt;br&gt;1/03/2010 17:35:00	1/03/2010 17:44:59&lt;br&gt;1/03/2010 21:05:00	1/03/2010 21:10:00&lt;br&gt;1/03/2010 22:35:00	1/03/2010 22:44:59&lt;br&gt;2/03/2010 0:25:00	2/03/2010 0:40:00&lt;br&gt;2/03/2010 7:35:00	2/03/2010 9:10:00&lt;br&gt;2/03/2010 18:40:00	2/03/2010 18:44:59&lt;br&gt;2/03/2010 22:10:00	2/03/2010 22:30:00&lt;br&gt;3/03/2010 1:55:00	3/03/2010 2:40:00&lt;br&gt;3/03/2010 4:55:00	3/03/2010 5:10:00&lt;br&gt;3/03/2010 20:10:00	3/03/2010 20:25:00&lt;br&gt;4/03/2010 0:25:00	4/03/2010 0:29:59[/b]&lt;br&gt;</description><pubDate>Thu, 04 Mar 2010 17:08:00 GMT</pubDate><dc:creator>smersh</dc:creator></item><item><title>how to lean C# for program a system?</title><link>http://www.rightedgesystems.com/forums/Topic11087-7-1.aspx</link><description>I use WLD before and hard to program what I am thinking by C#&lt;/P&gt;&lt;P&gt;Is there a better way to learn how program the trade system by C#?</description><pubDate>Mon, 08 Mar 2010 09:31:50 GMT</pubDate><dc:creator>qichxi</dc:creator></item><item><title>RE crashed during backtest</title><link>http://www.rightedgesystems.com/forums/Topic11073-7-1.aspx</link><description>After 30 minutes of backtesting calculations RE crashed without any message.&lt;br&gt;</description><pubDate>Mon, 08 Mar 2010 07:16:39 GMT</pubDate><dc:creator>Largo</dc:creator></item><item><title>RE Doesn't handle Broker Disconnection</title><link>http://www.rightedgesystems.com/forums/Topic11007-7-1.aspx</link><description>Twice in the last month I had issue which I saw double orders for my positions in TWS.&lt;br&gt;I investigated this and found in the output window the following message:&lt;br&gt;&lt;br&gt;Broker disconnected: Disconnected: Error! id=-1 errorCode=1100Connectivity between IB and TWS has been lost&lt;br&gt;&lt;br&gt;right after that, at the same second, I have a "Broker reconnected" message.&lt;br&gt;&lt;br&gt;&lt;br&gt;However, it seems that this short disconnection was enough for RE to lose it's synchronization with the open orders in IB, which resulted in these orders not being canceled at the end of the bar before new orders were resubmitted, hence the cause for the double orders.&lt;br&gt;&lt;br&gt;Do you have any idea of how to avoid this situation?</description><pubDate>Tue, 02 Mar 2010 14:18:36 GMT</pubDate><dc:creator>lksf</dc:creator></item><item><title>Failed to install RightEdge 2010</title><link>http://www.rightedgesystems.com/forums/Topic11059-7-1.aspx</link><description>I tried to install RightEdge 2010 Build 17, and encountered this error message.&lt;br&gt;&lt;br&gt;[url=http://img138.imageshack.us/img138/6299/001os.png][/url]&lt;br&gt;&lt;br&gt;(The error code is 2908)&lt;br&gt;&lt;br&gt;Does anyone can help me?&lt;br&gt;&lt;br&gt;</description><pubDate>Sun, 07 Mar 2010 10:32:37 GMT</pubDate><dc:creator>almustafa</dc:creator></item><item><title>Exception generated only when Output tab is minimized</title><link>http://www.rightedgesystems.com/forums/Topic10895-7-1.aspx</link><description>I encountered a funny problem today - when I launch a live system, I get an exception ONLY IF the Output tab is minimized (i.e. autohide is on). The exception is the following:&lt;br&gt;&lt;br&gt;An exception of type System.ArgumentException was thrown.&lt;br&gt;Controls created on one thread cannot be parented to a control on a different thread.&lt;br&gt;   at System.Windows.Forms.Control.ControlCollection.Add(Control value)&lt;br&gt;   at System.Windows.Forms.Control.set_ParentInternal(Control value)&lt;br&gt;   at System.Windows.Forms.Control.set_Parent(Control value)&lt;br&gt;   at TD.SandDock.A.A(DockControl , Boolean , Boolean )&lt;br&gt;   at TD.SandDock.DockControl.Open(WindowOpenMethod openMethod)&lt;br&gt;   at TD.SandDock.Dockable&amp;#119;indow.Open()&lt;br&gt;   at RightEdge.xf266856f631ec016.xe76263e9c29b08f6(Object xe0292b9ed559da7d, SystemOutputEventArgs xfbf34718e704c6bc)&lt;br&gt;&lt;br&gt;It occurs in response to messages printed using OutputMessage() from methods inside MySymbolScript and messages printed using SystemData.Output.Add() from methods inside MySystem class, EXCEPT for messages printed from Startup() methods of these classes. If I turn off autohide, everything works fine. I'm using RE2 b14.</description><pubDate>Wed, 17 Feb 2010 20:01:11 GMT</pubDate><dc:creator>Zora</dc:creator></item><item><title>define margins in RE2010</title><link>http://www.rightedgesystems.com/forums/Topic11051-7-1.aspx</link><description>hi! I am building a kind of mixed system trading shares and forex. now the problem: how can I setup the forex symbols correctly in the way that the margins are handled correctly?&lt;/P&gt;&lt;P&gt;e.g. if I have 5% margin for FOREX, where do I need to define it? It would be no solution do just increase the starting capital, because there is no margin on the other non-forex symbols and all the statistics would be wrong. Currently, I've putted in the margin in the symbol definition field "margin", but it seems to have no effects on the trades. If I do a trade, all the amount of the trade is subtracted from the current capital and no only a portion of it considering the margin. &lt;/P&gt;&lt;P&gt;What do do?&lt;/P&gt;&lt;P&gt;THANKS!</description><pubDate>Sat, 06 Mar 2010 10:55:08 GMT</pubDate><dc:creator>ophth1</dc:creator></item><item><title>Historical data import error</title><link>http://www.rightedgesystems.com/forums/Topic11071-7-1.aspx</link><description>I' going to use backtesting functionality in RE.&lt;br&gt;&lt;br&gt;But I can't do first step: importing M5 historical data from text file:&lt;br&gt;When all items are imported (about 200.000) and progress bar is 100% filled then I have only cancel button and RE windows process consumes all cpu res.&lt;br&gt;I tried to import S&amp;P500 future 5 years historical data, in instrument name I entered "ES" (without any expiration date).&lt;br&gt;&lt;br&gt;It's probably due to postprocessing time - I tested it on short data file and all was fast finished well. How much time it may take?:)&lt;br&gt;(bars stored in sqlserver)&lt;br&gt;&lt;br&gt;Ok, it took 12 minutes - then progress bar should be corrected.&lt;br&gt;</description><pubDate>Mon, 08 Mar 2010 06:12:09 GMT</pubDate><dc:creator>Largo</dc:creator></item><item><title>Is RE capable to perform rebalancing on portfolio level?</title><link>http://www.rightedgesystems.com/forums/Topic11037-7-1.aspx</link><description>it's not a piece of cake for many retails system trading softwar to perform portfolio rebalancing,it would be a great edge for RE if it could perform rebalancing.</description><pubDate>Thu, 04 Mar 2010 21:10:40 GMT</pubDate><dc:creator>blacklion</dc:creator></item><item><title>OutputMessage related exception (RE1, b. 384)</title><link>http://www.rightedgesystems.com/forums/Topic8620-7-1.aspx</link><description>Here is a fragment of my log and an exception that was throw today while running live. Any help is greatly appreciated. The beginning of each line shows system time, then everything else should be fairly self-explanatory. "X@Y" = "# of shares@price". The system doesn't stop when the exception occurs, but keeps on running.&lt;br&gt;&lt;br&gt;...&lt;br&gt;...&lt;br&gt;...&lt;br&gt;11:17:04.5625000: Bought OFC 100@27.81. OrderID = 24574&lt;br&gt;11:17:04.5937500: Bought OFC 79@27.81. OrderID = 24574&lt;br&gt;11:17:04.6875000: Limit buy order placed for OI@$26.58575&lt;br&gt;11:17:04.7343750: Limit buy order placed for OIH@$96.8474&lt;br&gt;11:17:04.7500000: Limit buy order placed for OIL@$21.58705&lt;br&gt;11:17:04.7968750: Limit buy order placed for OMI@$33.3697&lt;br&gt;11:17:04.8281250: Limit buy order placed for OMTR@$10.1711&lt;br&gt;11:17:05: Order successfully cancelled for OIH. Size = 51, price = 96.85, orderID = 24580, order state = Cancelled, position state = None&lt;br&gt;(System message): Order Canceled - reason:Exchange(s) does not accept odd lot order, order info: OpenPosition, Buy&lt;br&gt;11:17:05.0156250: (ONNN) Exception caught while trying to open position! Collection was modified; enumeration operation may not execute.&lt;br&gt;&lt;br&gt;   at System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()&lt;br&gt;   at Divelements.SandGrid.InnerGrid.&#x1;(GridRowCollection , Boolean , Rectangle , GridColumn[] , GridColumn[] )&lt;br&gt;   at Divelements.SandGrid.InnerGrid.&#x1;(Boolean , Rectangle )&lt;br&gt;   at Divelements.SandGrid.InnerGrid.&#x1;(Rectangle , Boolean )&lt;br&gt;   at Divelements.SandGrid.SandGrid.&#x7;()&lt;br&gt;   at Divelements.SandGrid.SandGrid.&#x6;()&lt;br&gt;   at Divelements.SandGrid.SandGrid.&#x1;(GridElement , FocusAdvanceDirection )&lt;br&gt;   at Divelements.SandGrid.SandGrid.ScrollElementIntoView(GridElement element)&lt;br&gt;   at RightEdge.OutputPane.MakeLastRowVisible()&lt;br&gt;   at RightEdge.OutputPane.AddOutputLine(SystemOutput systemOutput, Boolean ensureVisible)&lt;br&gt;   at RightEdge.OutputPane.AddOutputLine(SystemOutput systemOutput)&lt;br&gt;   at RightEdge.xf266856f631ec016.xe76263e9c29b08f6(Object xe0292b9ed559da7d, SystemOutputEventArgs xfbf34718e704c6bc)&lt;br&gt;   at RightEdge.LiveSystem&amp;#119;indow.x058a2906a083e8b8(Object xe0292b9ed559da7d, SystemOutputEventArgs x9c13656d94fc62d0)&lt;br&gt;   at RightEdge.LiveSystem&amp;#119;indow.x058a2906a083e8b8(Object xe0292b9ed559da7d, SystemOutputEventArgs x9c13656d94fc62d0)&lt;br&gt;   at RightEdge.Shared.SystemWrapper.Output_LogLineAdded(SystemOutput logLine)&lt;br&gt;   at RightEdge.Common.OutputManager.Add(SystemOutput systemOutput)&lt;br&gt;   at RightEdge.Common.SymbolScriptBase.OutputMessage(String message, Boolean statusBar)&lt;br&gt;   at RightEdge.Common.SymbolScriptBase.OutputMessage(String message)&lt;br&gt;   at MySymbolScript.performAnalysisAndPlaceOrders(DateTime orderExecutionDate) in D:\Stock Programs\RightEdge 1\ATS\Trader2\Trader2.cs:line 452&lt;br&gt;11:17:05.0312500: Limit buy order placed for ONXX@$21.5774&lt;br&gt;11:17:05.0312500: Limit buy order placed for OSG@$30.00185&lt;br&gt;...&lt;br&gt;...&lt;br&gt;...</description><pubDate>Wed, 27 May 2009 14:58:59 GMT</pubDate><dc:creator>Zora</dc:creator></item><item><title>StopLimit Orders</title><link>http://www.rightedgesystems.com/forums/Topic11025-7-1.aspx</link><description>I have searched through the forums but can't tell if StopLimit orders are being supported by the paper broker. It appears that they are correctly implemented in live mode, but I am trying in backtesting mode and they don't appear to be getting filled correctly. Not sure if I am missing something or if it is the paper broker. Thanks.</description><pubDate>Thu, 04 Mar 2010 09:55:20 GMT</pubDate><dc:creator>imcdonald</dc:creator></item><item><title>Latest TWS (1March Build) API is BROKEN!</title><link>http://www.rightedgesystems.com/forums/Topic10996-7-1.aspx</link><description>Order placement is fine but once an order trades, the following exception appears.&lt;br&gt;&lt;br&gt;[b]An exception of type System.InvalidOperationException was thrown.&lt;br&gt;Exception thrown while processing message: ExecutionData&lt;br&gt;   at Krs.Ats.IBNet.IBClient.ProcessMsg(IncomingMessage msgId)&lt;br&gt;   at Krs.Ats.IBNet.IBClient.Run()&lt;br&gt;   at System.Threading.ThreadHelper.ThreadStart_Context(Object state)&lt;br&gt;   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)&lt;br&gt;   at System.Threading.ThreadHelper.ThreadStart()&lt;br&gt;&lt;br&gt;Inner Exception:&lt;br&gt;An exception of type System.ArgumentNullException was thrown.&lt;br&gt;Value cannot be null.&lt;br&gt;Parameter name: key&lt;br&gt;   at System.ThrowHelper.ThrowArgumentNullException(ExceptionArgument argument)&lt;br&gt;   at System.Collections.Generic.Dictionary`2.FindEntry(TKey key)&lt;br&gt;   at System.Collections.Generic.Dictionary`2.TryGetValue(TKey key, TValue&amp; value)&lt;br&gt;   at RightEdge.Common.EnumUtil`1.Parse(String s)&lt;br&gt;   at RightEdge.TWSCSharpPlugin.TWSAssetArgs.GetRECurrency(String IBCurrency)&lt;br&gt;   at RightEdge.TWSCSharpPlugin.TWSAssetArgs.SymbolFromContract(Contract contract)&lt;br&gt;   at RightEdge.TWSCSharpPlugin.TWSPlugin.client_ExecDetails(Object sender, ExecDetailsEventArgs e)&lt;br&gt;   at Krs.Ats.IBNet.IBClient.OnExecDetails(ExecDetailsEventArgs e)&lt;br&gt;   at Krs.Ats.IBNet.IBClient.execDetails(Int32 reqId, Int32 orderId, Contract contract, Execution execution)&lt;br&gt;   at Krs.Ats.IBNet.IBClient.ProcessMsg(IncomingMessage msgId)&lt;br&gt;[/b]&lt;br&gt;&lt;br&gt;&lt;br&gt;I rolled back to TWS 11Dec2009 Build900.6  (from the IB website) and it works.&lt;br&gt;&lt;br&gt;I have reported this to IB........:Whistling:&lt;br&gt;&lt;br&gt;</description><pubDate>Tue, 02 Mar 2010 01:52:02 GMT</pubDate><dc:creator>smersh</dc:creator></item><item><title>RE consuming excessive CPU for 22 symbols</title><link>http://www.rightedgesystems.com/forums/Topic11012-7-1.aspx</link><description>I am running RE Ed2 B14 on a 3Ghz HT XP box with 2GB RAM connected to TWS on another box and nothing else running.&lt;br&gt;&lt;br&gt;When only trading 22 Futures contracts I see CPU running mostly around 30-50% (ie 70-100% of a virtual core). If I run another instance of RE with the same symbols I see 60-100% CPU usage (ie both virtual cores maxed). I find it very strange that if I minimise RE the CPU drops to 10-40% CPU (per instance).&lt;br&gt;&lt;br&gt;RE struggles to paint itself eg when switching between panes it can take 10-30sec to display the new pane. In fact it is extremely unresponsive and drops a few thousand ticks per hour.&lt;br&gt;&lt;br&gt;I suspected it was to do with painting the Live Data pane but when I closed the pane there was no change.&lt;br&gt;&lt;br&gt;The (futures) contracts I have are;&lt;br&gt;&lt;br&gt;AUD 032010&lt;br&gt;CAD 032010&lt;br&gt;EUR 032010&lt;br&gt;GBP 032010&lt;br&gt;&lt;br&gt;ES 032010&lt;br&gt;K200 032010&lt;br&gt;N225M 032010&lt;br&gt;NQ 032010&lt;br&gt;YM 032010&lt;br&gt;SPI 032010&lt;br&gt;SSG 032010&lt;br&gt;&lt;br&gt;ZB 062010&lt;br&gt;ZN 032010&lt;br&gt;ZT 032010&lt;br&gt;&lt;br&gt;ZC 052010&lt;br&gt;ZO 032010&lt;br&gt;ZS 052010&lt;br&gt;ZW 032010&lt;br&gt;&lt;br&gt;CL 032010&lt;br&gt;HO 032010&lt;br&gt;&lt;br&gt;GC 042010&lt;br&gt;SI 042010&lt;br&gt;&lt;br&gt;They can get busy but even when not I get poor response/performance.&lt;br&gt;&lt;br&gt;What could be the reason for this? And why is 22 symbols too much to handle?&lt;br&gt;&lt;br&gt;</description><pubDate>Wed, 03 Mar 2010 07:08:01 GMT</pubDate><dc:creator>smersh</dc:creator></item><item><title>add and remove symbols on the fly 2010</title><link>http://www.rightedgesystems.com/forums/Topic10992-7-1.aspx</link><description>hi! is there now a way in RE 2010 to add and remove symbols from the watchlist programmatically, i.e. on the fly while the system is running? it would be a real and necessary improvement, because the symbol lists will change during the day and using e.g. several instances of RE in a kind of control batch file will make the system much more viable. &lt;/P&gt;&lt;P&gt;Thanks!</description><pubDate>Mon, 01 Mar 2010 11:50:26 GMT</pubDate><dc:creator>ophth1</dc:creator></item><item><title>Live PL calculation incorrect (for closed position)</title><link>http://www.rightedgesystems.com/forums/Topic10424-7-1.aspx</link><description>I had the follow trades in ZC (Muliplier = 50 USD/point):&lt;br&gt;&lt;br&gt;Short 19 ZC @ 421.00&lt;br&gt;Cover 7 @ 420.00 + 12 @ 421.00&lt;br&gt;&lt;br&gt;The resulting P/L was -475.00&lt;br&gt;&lt;br&gt;The Avg Close is shown as 421.5 but by my calculations Avg Close should be;&lt;br&gt;&lt;br&gt;(7 x 420.50 + 12 x 421.00) / 19 = 420.8158&lt;br&gt;&lt;br&gt;The Realised PL should therefore be 50 x 19 x (421.00 - 420.8158) = +175.00&lt;br&gt;&lt;br&gt;Plz see attached (where I have moved the trade labels for clarity).&lt;br&gt;&lt;br&gt;&lt;br&gt;Note that my account ccy is AUD but I have a single bar in AUD/USD of 1.0 at 1Jan2000&lt;br&gt;&lt;br&gt;It could be related to the previously discussed PL with FX problem but I suspect it is probably a rounding and/or sense issue.&lt;br&gt;&lt;br&gt;</description><pubDate>Wed, 06 Jan 2010 17:29:27 GMT</pubDate><dc:creator>smersh</dc:creator></item><item><title>Expired future contract data via IB</title><link>http://www.rightedgesystems.com/forums/Topic9019-7-1.aspx</link><description>Hi all,&lt;/P&gt;&lt;P&gt;I am trying to get historical data for expired future contract into RightEdge from TWS. However, when I setup the expired symbol and click download I get error 200. &lt;/P&gt;&lt;P&gt;I can see the data within TWS, hence went on the IB website. This is what I got.&lt;/P&gt;&lt;P&gt;&lt;FONT size=1&gt;For all API technologies, including DDE and all socket-based API technologies, including the socket client library, ActiveX, and Java, TWS 863 (server version 31) and API version 9.0 (socket client version 30) extend contract details requests and historical data queries by supporting a new final parameter, “Include Expired.” If it is true, those operations can be performed pertaining to expired contracts. Historical data queries on expired contracts are limited to the last year of the contracts life, and are initially only supported for expired futures contracts, with that restriction being imposed by IB’s servers. At some point in the future, should historical data queries for expired contracts on other asset classes become available, TWS 863 (server version 31) and API version 9.0 (both DDE and socket client version 30) will support those queries.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;How can I set the "Include Expired" parameter within the Interactive Broker plugin in RightEdge?&lt;/P&gt;&lt;P&gt;Am using RightEdge 2008 version 1 build 384.&lt;/P&gt;&lt;P&gt;Thank you in advance&lt;/P&gt;&lt;P&gt;George</description><pubDate>Wed, 22 Jul 2009 08:14:25 GMT</pubDate><dc:creator>gc</dc:creator></item><item><title>Problem Importing Tick Data (RE2010 RC1 B15)</title><link>http://www.rightedgesystems.com/forums/Topic10950-7-1.aspx</link><description>Hi,&lt;br&gt;&lt;br&gt;I just started demoing RE 2010 RC1 Build15, and run into a problem when trying to import tick data: the system starts importing ticks from a CSV file (this is forex data, btw, so I had to add the fixed "volume" column) and when it reaches a certain number of imported lines (a little above eight millions) it throws an OutOfMemoryException and stops importing data. I am attaching an image with the error &amp;#119;indow.&lt;br&gt;&lt;br&gt;The program is running in a virtual machine (Virtualbox with an XP guest under a SuSE Linux host) with 2GB of memory assigned. I have been monitoring memory usage and there is still plenty of memory free when the exception occurs, RightEdge is using ~350MB at that moment an there is more than 1 GB still free, not being used by any other processes. Just in case, I run the VM with 4GB and the exception appeared at the same point, when it reached 8 million lines read. It seems to be reproducible and to happen always at the very same point.&lt;br&gt;&lt;br&gt;I hope you guys can give me a hand with this. Thanks in advance :)</description><pubDate>Wed, 24 Feb 2010 12:02:27 GMT</pubDate><dc:creator>PipAdder</dc:creator></item><item><title>General RE capability</title><link>http://www.rightedgesystems.com/forums/Topic10967-7-1.aspx</link><description>Hi,&lt;br&gt;I'm investigating RE for forex trading and have some general questions before I try the demo:&lt;br&gt;&lt;br&gt;1) Can charts be linked together by their symbol, so if I have 3 charts side by side, I can change the symbol and all 3 will change?  If not, can I change all of their symbols at once using C#?&lt;br&gt;&lt;br&gt;2) Can I trade through RE's GAIN plugin?  The webisite does not list GAIN as a broker.&lt;br&gt;&lt;br&gt;3) Can RE use historical Forex data from MBTrading or GAIN?&lt;br&gt;&lt;br&gt;4) Have the MBTrading connection issues been resolved (can I use MBT data and trade with MBT at the same time)?&lt;br&gt;&lt;br&gt;5)  Can I trade using IB and with a historical datafeed from MBT or Gain?&lt;br&gt;&lt;br&gt;6) Are there events &amp; data for chart objects that are manually added or moved, so my trading system can recognize the event and read the objects new value?&lt;br&gt;&lt;br&gt;thanks!&lt;br&gt;&lt;br&gt;</description><pubDate>Thu, 25 Feb 2010 09:00:01 GMT</pubDate><dc:creator>tecman234</dc:creator></item><item><title>Multiple Systems sample posted and feedback requested</title><link>http://www.rightedgesystems.com/forums/Topic5496-7-1.aspx</link><description>We frequently get inquiries about whether RightEdge supports multiple systems at the same time.  This is not directly supported in RightEdge, but since systems are written using real, standardized programming language it is possible to write your own system that implements this.  I have created a &lt;A href="http://www.rightedgesystems.com/TradingSystemsDetails.aspx?id=0e8c4abe-67f3-4c64-86f5-728140dbec37"&gt;multiple systems sample&lt;/A&gt; to show one way this could be done.&lt;/P&gt;&lt;P&gt;The sample system consists of three strategies, two of which operate on stocks, and one which trades forex symbols.  Each of the three strategies derives from a common StrategyBase class.  The Symbol Script class keeps track of the strategies and routes events to the strategies.  Positions are "owned" by a single strategy, and order updates for a position are only sent to the strategy that owns the position.  The position description includes the name of the strategy which owns it, which makes it possible to see which strategy opened a position in the system results.&lt;/P&gt;&lt;P&gt;Eventually we would like to add multiple system support to RightEdge, and we would like to know what kind of functionality our users need.  The sample demonstrates the most basic functionality.  Does there need to be a way to view system results separately for each system (as well as the combined results)?  What kind of money/risk management is necessary?  (We have had some &lt;A href="http://www.rightedgesystems.com/forums/Topic1107-7-1.aspx"&gt;previous discussion&lt;/A&gt; on this.)  What else would be necessary, or nice to have?&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR&gt;Daniel</description><pubDate>Mon, 21 Apr 2008 16:57:52 GMT</pubDate><dc:creator>dplaisted</dc:creator></item><item><title>panel height</title><link>http://www.rightedgesystems.com/forums/Topic10953-7-1.aspx</link><description>hi! is there a way, to define the height of the different panels for price, indicators and so on in c#?&lt;/P&gt;&lt;P&gt;would be very helpful!&lt;/P&gt;&lt;P&gt;thanks!!</description><pubDate>Wed, 24 Feb 2010 16:15:20 GMT</pubDate><dc:creator>ophth1</dc:creator></item><item><title>Multiple Watch lists using Automation Command Lines</title><link>http://www.rightedgesystems.com/forums/Topic10945-7-1.aspx</link><description>Is there a way to select two watch list folders from the command line?&lt;br&gt;&lt;br&gt;I have one folder with world indexes in it and another with stocks. The stock watch list gets updated each day to match other watch lists so I want to tkeep them separate.&lt;br&gt;&lt;br&gt;Thanks.</description><pubDate>Wed, 24 Feb 2010 04:44:59 GMT</pubDate><dc:creator>kaizen</dc:creator></item><item><title>2010 License</title><link>http://www.rightedgesystems.com/forums/Topic10924-7-1.aspx</link><description>Hi Guys,&lt;br&gt;&lt;br&gt;Can I (we) get the license keys updates for the 2010 version. &lt;br&gt;&lt;br&gt;I have installed it and updated my dll's with the new common.dll but now I can not run it via the automation as it waits for the user to press the continue screen before running.&lt;br&gt;&lt;br&gt;Thanks&lt;br&gt;&lt;br&gt;James</description><pubDate>Mon, 22 Feb 2010 02:48:47 GMT</pubDate><dc:creator>kaizen</dc:creator></item><item><title>Have you considered releasing a b385 for ED1?</title><link>http://www.rightedgesystems.com/forums/Topic10887-7-1.aspx</link><description>You know, until ED2 is truly complete...some annoying bug fixes etc...It can't be that I'm the only one still using ED1...&lt;br&gt;&lt;br&gt;example for something that will be great if fixed - [url]http://www.rightedgesystems.com/forums/Topic8281-7-1.aspx[/url]&lt;br&gt;&lt;br&gt;I'm sure there are more small things on the evergrowing list</description><pubDate>Tue, 16 Feb 2010 18:14:12 GMT</pubDate><dc:creator>lksf</dc:creator></item><item><title>Fills in RE paper trader at current close not next bar</title><link>http://www.rightedgesystems.com/forums/Topic10882-7-1.aspx</link><description>Is there a chance to consider providing the option to simulate fills in the RE paper trader at the current bar close rather than at the next bar open? It makes a lot more sense especially when slippage or other execution costs can be simulated and custom built-in. Its a major obstacle especially when running daily strategies when one wants to backtest strategies that trade at the close or open.</description><pubDate>Mon, 15 Feb 2010 23:59:58 GMT</pubDate><dc:creator>bbmat173</dc:creator></item><item><title>Cannot display System Output/ Build Output</title><link>http://www.rightedgesystems.com/forums/Topic10873-7-1.aspx</link><description>I seem to have problems to display the build output tab in Build 14. I closed the tab by accident but Ctrl-W Ctrl-O/Ctrl-B does not have any effect. I need to see the console output window and build output &amp;#119;indow. Any help?&lt;br&gt;&lt;br&gt;Thanks&lt;br&gt;&lt;br&gt;</description><pubDate>Mon, 15 Feb 2010 10:38:49 GMT</pubDate><dc:creator>bbmat173</dc:creator></item><item><title>2010 RC SQL tables renamed?</title><link>http://www.rightedgesystems.com/forums/Topic10852-7-1.aspx</link><description>I had trouble with the SQL database not working... And then noticed that the SQL database table definitions in the plugins had different table names: DBTick instead if Tick etc. I'm wondering if that's the only change or if there's other things in the db creation script that are changed. &lt;br&gt;&lt;br&gt;Does anyone have an updated script?&lt;br&gt;&lt;br&gt;Jeremy</description><pubDate>Sat, 13 Feb 2010 11:35:37 GMT</pubDate><dc:creator>jeremytang</dc:creator></item><item><title>question on multiple timeframes</title><link>http://www.rightedgesystems.com/forums/Topic10745-7-1.aspx</link><description>I generated a special frequency which raises a NewMinuteBar function (I run on hourly system frequency). My question is, can I only access the minute data of the symbol that I associated with that frquency? Lets say I have 2 stock symbols, can I access the one minute data of each symbol AT THE SAME TIME? Please note that I run everything in SystemClass not SymbolClass which has the precise reason that I need to access the data at the same time not one after another. Here are my definitions and functions, thanks for taking a look. &lt;br&gt;&lt;br&gt;public class MySystem : MySystemBase&lt;br&gt;{&lt;br&gt;	//System Frequency: 1 hour&lt;br&gt;	//Short Frequency : 1 minute&lt;br&gt;	//Long Frequency  : 1 day	&lt;br&gt;		&lt;br&gt;	Symbol mySymbol;&lt;br&gt;	&lt;br&gt;	SMA builtInIndicatorSMAFast;&lt;br&gt;	SMA builtInIndicatorSMASlow;&lt;br&gt;	CustomInd customIndicatorSMAFast;&lt;br&gt;	CustomInd customIndicatorSMASlow;&lt;br&gt;	UserSeries UserSeriesSMAFast;&lt;br&gt;	UserSeries UserSeriesSMASlow;&lt;br&gt;	&lt;br&gt;	Frequency myMinuteFrequency;&lt;br&gt;	Frequency myDailyFrequency;&lt;br&gt;	&lt;br&gt;	public override void Startup(SystemData data)&lt;br&gt;	{&lt;br&gt;		base.Startup(data);&lt;br&gt;		&lt;br&gt;		mySymbol = SystemData.GetSymbolByName("USD/JPY");&lt;br&gt;		SymbolScriptBase mySymbolScript;&lt;br&gt;		mySymbolScript = SymbolScripts[mySymbol];&lt;br&gt;		&lt;br&gt;		myMinuteFrequency = SystemData.GetFrequency(mySymbol,TimeSpan.FromMinutes(1));&lt;br&gt;		myMinuteFrequency.NewBar += NewMinuteBar;&lt;br&gt;		&lt;br&gt;		myDailyFrequency = SystemData.GetFrequency(mySymbol,TimeSpan.FromDays(1));&lt;br&gt;		myDailyFrequency.NewBar += NewDailyBar;&lt;br&gt;		&lt;br&gt;		builtInIndicatorSMAFast = new SMA(30,myMinuteFrequency.Close);&lt;br&gt;		builtInIndicatorSMASlow = new SMA(30,myDailyFrequency.Close);&lt;br&gt;		customIndicatorSMAFast = new CustomInd(SystemData,SymbolScripts["USD/JPY"]);&lt;br&gt;		customIndicatorSMASlow = new CustomInd(SystemData,SymbolScripts["USD/JPY"]);&lt;br&gt;		UserSeriesSMAFast = new UserSeries();&lt;br&gt;		UserSeriesSMASlow = new UserSeries();&lt;br&gt;		&lt;br&gt;	}&lt;br&gt;	&lt;br&gt;	public override void NewBar()&lt;br&gt;	{&lt;br&gt;		//Called each System &lt;br&gt;		Console.WriteLine("SystemFrequency FX Value: " + Bars[mySymbol].Current.Close);&lt;br&gt;		&lt;br&gt;	}&lt;br&gt;	&lt;br&gt;	public void NewMinuteBar(object sender, SingleBarEventArgs args)&lt;br&gt;	{&lt;br&gt;		if(Bars[mySymbol].Count &lt; 1) return;&lt;br&gt;		&lt;br&gt;		Console.WriteLine("Minute Frequency FX Value: " + args.Bar.Close);&lt;br&gt;	}&lt;br&gt;	&lt;br&gt;	public void NewDailyBar(object sender, SingleBarEventArgs args)&lt;br&gt;	{&lt;br&gt;		&lt;br&gt;	}&lt;br&gt;	&lt;br&gt;}&lt;br&gt;&lt;br&gt;&lt;br&gt;public class MySymbolScript : MySymbolScriptBase&lt;br&gt;{&lt;br&gt;	public override void Startup()&lt;br&gt;	{&lt;br&gt;		// Perform initialization here.&lt;br&gt;&lt;br&gt;	}&lt;br&gt;&lt;br&gt;	public override void NewBar()&lt;br&gt;	{&lt;br&gt;		// Put your trading code here&lt;br&gt;&lt;br&gt;	}&lt;br&gt;&lt;br&gt;	public override void OrderFilled(Position position, Trade trade)&lt;br&gt;	{&lt;br&gt;		// This method is called when an order is filled&lt;br&gt;&lt;br&gt;	}&lt;br&gt;&lt;br&gt;	public override void OrderCancelled(Position position, Order order, string information)&lt;br&gt;	{&lt;br&gt;		// This method is called when an order is cancelled or rejected&lt;br&gt;&lt;br&gt;	}&lt;br&gt;}&lt;br&gt;</description><pubDate>Tue, 09 Feb 2010 01:08:24 GMT</pubDate><dc:creator>bbmat173</dc:creator></item><item><title>License clarification fro RE 2010</title><link>http://www.rightedgesystems.com/forums/Topic10824-7-1.aspx</link><description>Could you please post more detailed instructions on how to install the RE 2010 license? I spent 15 minutes looking on the My Account pages, but was not able to find anything that resembles a new license file. Is my RE Ed. 2 license still applicable? Thanks!</description><pubDate>Thu, 11 Feb 2010 16:37:09 GMT</pubDate><dc:creator>Zora</dc:creator></item><item><title>RE2 build15 in 64bit mode and DLL</title><link>http://www.rightedgesystems.com/forums/Topic10755-7-1.aspx</link><description>&lt;FONT size=2 face="Courier New"&gt;&lt;FONT size=2 face="Courier New"&gt;&lt;P&gt;hi!&lt;/P&gt;&lt;P&gt;I've installed RE2 built 15 without problem and thanks, it works now properly in win2008R2 64bit. &lt;/P&gt;&lt;P&gt;However, I get now a badformatexeption when trying to load a DLL:&lt;/P&gt;&lt;P&gt;[DllImport(&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color=#800000 size=2 face="Courier New"&gt;&lt;FONT color=#800000 size=2 face="Courier New"&gt;&lt;FONT color=#800000 size=2 face="Courier New"&gt;"STA_SELL_DLL.DLL"&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size=2 face="Courier New"&gt;&lt;FONT size=2 face="Courier New"&gt;, EntryPoint = &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color=#800000 size=2 face="Courier New"&gt;&lt;FONT color=#800000 size=2 face="Courier New"&gt;&lt;FONT color=#800000 size=2 face="Courier New"&gt;"STA_SELL_DLL"&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size=2 face="Courier New"&gt;&lt;FONT size=2 face="Courier New"&gt;, ExactSpelling = &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2 face="Courier New"&gt;&lt;FONT color=#0000ff size=2 face="Courier New"&gt;&lt;FONT color=#0000ff size=2 face="Courier New"&gt;false&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size=2 face="Courier New"&gt;&lt;FONT size=2 face="Courier New"&gt;)]&lt;/P&gt;&lt;P&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2 face="Courier New"&gt;&lt;FONT color=#0000ff size=2 face="Courier New"&gt;&lt;FONT color=#0000ff size=2 face="Courier New"&gt;private&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size=2 face="Courier New"&gt;&lt;FONT size=2 face="Courier New"&gt; &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2 face="Courier New"&gt;&lt;FONT color=#0000ff size=2 face="Courier New"&gt;&lt;FONT color=#0000ff size=2 face="Courier New"&gt;static&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size=2 face="Courier New"&gt;&lt;FONT size=2 face="Courier New"&gt; &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2 face="Courier New"&gt;&lt;FONT color=#0000ff size=2 face="Courier New"&gt;&lt;FONT color=#0000ff size=2 face="Courier New"&gt;extern&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size=2 face="Courier New"&gt;&lt;FONT size=2 face="Courier New"&gt; &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2 face="Courier New"&gt;&lt;FONT color=#0000ff size=2 face="Courier New"&gt;&lt;FONT color=#0000ff size=2 face="Courier New"&gt;double&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size=2 face="Courier New"&gt;&lt;FONT size=2 face="Courier New"&gt; STA_SELL_DLL(&lt;/P&gt;&lt;P&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2 face="Courier New"&gt;&lt;FONT color=#0000ff size=2 face="Courier New"&gt;&lt;FONT color=#0000ff size=2 face="Courier New"&gt;double&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size=2 face="Courier New"&gt;&lt;FONT size=2 face="Courier New"&gt; in1);&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size=2 face="Courier New"&gt;&lt;FONT size=2 face="Courier New"&gt;I assume that VS2008 compiled it into a 32 bit DLL. Is there a way to load a 32bit DLL in RE2 running in 64bit mode?&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size=2 face="Courier New"&gt;&lt;FONT size=2 face="Courier New"&gt;thanks!!&lt;/P&gt;&lt;/FONT&gt;&lt;/FONT&gt;</description><pubDate>Tue, 09 Feb 2010 16:27:49 GMT</pubDate><dc:creator>ophth1</dc:creator></item><item><title>RE edition 2 release date</title><link>http://www.rightedgesystems.com/forums/Topic10825-7-1.aspx</link><description>I have been doing some research on system trading software. I came across RE as my friend told me about your product. Upon downloading your trial version of RE software, I'm impressed by the ease and low cost of learning to use the software and using it to develop my trading system (*BTW, I'm not a programmer).&lt;br&gt; &lt;br&gt;Having said that, I have learned on this forum that RE edition 1 doesn't support multiple frequencies but has been addressed in edition 2. Since multiple frequencies is a main component of my trading strategies, my question is that when will you release RE edition 2!?&lt;br&gt; &lt;br&gt;Also, would your documentation be updated to reflect the changes?&lt;br&gt; &lt;br&gt;Thanks.</description><pubDate>Thu, 11 Feb 2010 17:44:17 GMT</pubDate><dc:creator>30percent</dc:creator></item><item><title>Using app.config</title><link>http://www.rightedgesystems.com/forums/Topic10819-7-1.aspx</link><description>Getting Error&lt;br&gt;[code]A namespace does not directly contain members such as fields or methods[/code]&lt;br&gt;When using app.config as seen below&lt;br&gt;[code]&lt;br&gt;&lt;?xml version="1.0" encoding="utf-8" ?&gt;&lt;br&gt;&lt;configuration&gt;	&lt;br&gt;	&lt;connectionStrings&gt;&lt;br&gt;		&lt;add name="MyDB"&lt;br&gt;			 connectionString="server=localhost;user id=myUser;password=pword;database=mydb;Use Procedure Bodies=false;"&lt;br&gt;		providerName="MySql.Data.MySqlClient" /&gt;&lt;br&gt;	&lt;/connectionStrings&gt;	&lt;br&gt;&lt;/configuration&gt;&lt;br&gt;[/code]</description><pubDate>Thu, 11 Feb 2010 12:54:18 GMT</pubDate><dc:creator>gregoryj</dc:creator></item></channel></rss>