support

When exporting RTL objects, can I specify a standard comment so I will not be prompted?

See Setup: Preferences: Import/Export.

Here you can specify whether you wish to be prompted for a comment or not. If you elect NOT be to prompted, you have the further option of specifying "no comment" or a fixed comment of your choosing, e.g. "This RTL object compliments of Charles Dow".

The comment exported with the RTL object is displayed to the recipient when someone imports your scan, signal, or custom indicator.

About Interactive Brokers Historical Data

Interactive Brokers historical backfill services can be unreliable but they do work. The problem with IB backfills is that IB is occasionally non-responsive to a download/backfill request. Additional requests have to be queued, awaiting the backfill in progress to complete. When IB is non responsive, the queue of awaiting requests essentially waits and waits and nothing appears to be happening at all. The DTN MA historical service is fast, accurate, highly responsive.

Can I import ticker symbols of pairs or spreads into Investor/RT from a text or csv file?

Yes. The file may be either a comma- or tab-separated text or csv file. The first line of the file is important and will tell Investor/RT that the following lines should be considered pairs or spreads (custom instruments). The first line should look like this:

/TYPE PAIR

The first line may also be used to tell Investor/RT that you would like to use division on the pairs instead of subtraction. The line above will default to subtraction, however, the line below:

How do I implement a stop and/or target in a trading system?

Assuming you have a system that goes both long (with BUY action) and short (with SELLSHORT action). And let's also assume we want to implement both a stop and a target on both the long and short trades. Let's also assume that we want the target to be 50 cents and the stop to be 25 cents.

In RTL, the token ENTRY gives us the entry price of any position. This token makes implementing stops and targets relatively simple.

How do I implement a trailing stop in a trading system?

Assuming you have a system that goes both long (with BUY action) and short (with SELLSHORT action). And let's also assume we want to implement a trailing stop on both the long and short trades.

Create the following two signals:

Set_Long_Trail_Stop
IF(POS_STATE = POS_LONG) THEN (SET(STOP, HI - 1))

Set_Short_Trail_Stop
IF(POS_STATE = POS_SHORT) THEN (SET(STOP, LO + 1))

Identifying Symbol Groups in QuotePages

We'll need to create a scan that we'll use to set a T# variable (we'll just use T#1 in our case) to the name of the quotepage (or something close to that name). We'll assume for this example that you have 3 quotepages with names of "GroupA", "GroupB", and "GroupC". The syntax of our scan will be as follows: SET(T#1, GroupA)

How are Forex symbols setup for the Interactive Brokers data source?

The IB Version now supports improved setup and chart backfill for currency pairs, e.g. EUR.USD, JPY.USD, etc. When adding such instruments via the Setup: Instruments window. choose "Forex" as the security type. IRT automatically sets up the Underlying Symbol and the Currency for the instrument by extracting this information from the ticker symbol, e.g. the ticker EUR.USD results in EUR as Underlying and USD as currency.

How do I setup a forex instrument with IB and IDEALPRO exchange?

When using Interactive Brokers ( IB ) with Investor/RT, there is a simple setup and chart backfill for currency pairs, e.g. EUR.USD, JPY.USD, etc. When adding such instruments via the Setup: Instruments window. choose Forex as the security type. Investor/RT automatically sets up the Underlying Symbol and the Currency for the instrument by extracting this information from the ticker symbol, e.g. the ticker EUR.USD results in EUR as Underlying and USD as currency.

Pages