ctrl + shift + ? for shortcuts
© 2025 Groups.io
Date

Re: What is the String for sending trade data to IB?

marinindextrader
 

"Hope I dont sound too stupid."................................


There is no such thing as sounding stupid when your asking a
question. The mere fact you are asking a question means your in the
process of learning. I never met a stupid learning person.

If you kept doing the same thing and expected a different result,
than I might take all of your sharp objects away...and give you
tennis balls to play with...

Hee hee

Happy Saturday

--- In twsapi@y..., "gringo_problematico" <gringo_problematico@y...>
wrote:
Scott,

Thanks so much. The Events and Methods link would be a great help.
Looking forward to accessing it.
Glenn


--- In twsapi@y..., "marinindextrader" <marinindextrader@y...>
wrote:
Its really straight forward:

The syntax is:

[TWS object].placeOrder(long id, String action, long quantity,
String
symbol, String secType, String expiry, float strike, String
right,
String exchange, String currency, String orderType, float
lmtprice,
float auxPrice)

If your TWS object is Named TWS1 then an example using your
predefined variables (you left a couple out, I added 'em) would
be:

id = 1
action = "BUY"
quantity = 1
symbol = "ES"
secType = "FUT"
expiry = "200209"
strike = 0
right = ""
exchange = "GLOBEX"
curency = ""
orderType = "STP_LMT
lmtPrice = 1000.00
auxPrice = 1000.25

TWS1.placeOrder(id, action, quantity, symbol, secType, expiry,
strike, right, exchange, orderType, lmtPrice, auxPrice)

This would place a Stop Limit Order to Buy (ostensibly Cover) 1
ES
contract whose trigger price is 1000.00, with a willing slip
of .25
or auxPrice of 1000.25

Note: Right and Currencey are VB keywords. I myslef have re-named
all
of my variables to prefix them with TWS...such as TWSright...just
to
be safe...another keyword is used in other calls: Status. This
too
could be problamatical and should be noted.

I noticed that you had an account identifier...no such identifier
is
warranted or available as far as I know. The account
identification
is predicated on the instance of TWS you log on with. If you have
two
accounts and want access or read them from the same instance of
your
custom application...you must log onto seperate instances of TWS
for
each account. In each case you must have a seperate socket port
to
differentiate the accounts on the client side.

You can then create a control array of the TWS objects, and
refrence
your calls and methods based on the indecie of the TWS object.

For more information on multiple account handling, check out
these
two posts:





There is a VB project in the files section that demonstrates auto
ID
sequencing, user defined ID incrament values, a Market Order
using
literals, and a dynamic storage array that records your order
calls.
Check that out too....

I hope this helps

Scott

PS:

I am going to link the Events and Methods syntax help files to
the
Board Home page tonite...its long overdue....

--- In twsapi@y..., "gringo_problematico"
<gringo_problematico@y...>
wrote:
I have a friend who is writing code for an an autoexecute
program.
I need to get the protocol? or string used to send the trade
data
to
IB.


ie.

id = 1 '
symbol = "ES"
secType = "FUT"
expiry = "200209"
strike = 0
right = ""
exchange = "GLOBEX"
curency = ""
acct name =

All that kind of stuff. Hope I dont sound too stupid.

Thanks in advance


Re: twsapi: Authomated Trading for TWS

Shukrainternationals
 

I tried your TradeGaurd but still unable to grasp the benefits of it to traders except a bunch of flipping colorful arrows You can simply use IB's TWS Dde.xls or TWSActiveX.xls and place your orders as well!
What additionals features and benefits your platform provides compared to IB's order-placing platforms?

----- Original Message -----
Sent: Friday, July 12, 2002 10:18 PM
Subject: twsapi: Authomated Trading for TWS

TraderGuard ver. 3.00.b02 for IB TWS NQ and ES has been released
today.

I am uploading it to file area in TWS API. I hope everyone who
want to download it will be able to get it from there.

Some features I want to mention are authomated trailing stops,
authomated exits from bad trade, risk monitoring. Also i like 1 click
to fill orders or reverse position.. no confirmation, no
transmit..saves time a lot.

another link to download is:


if you want to read about it go to:


Let me know what do you think




To unsubscribe from this group, send an email to:
twsapi-unsubscribe@...



Your use of Yahoo! Groups is subject to the .


Re: twsapi: Authomated Trading for TWS

Shukrainternationals
 

Hi TradeGuard author:
Do you have any document on how to run your TradeGaurd? I downloaded and installed it. Then what? How do I use it?
Spend some time and write up a document telling how to use it.

----- Original Message -----
Sent: Friday, July 12, 2002 10:18 PM
Subject: twsapi: Authomated Trading for TWS

TraderGuard ver. 3.00.b02 for IB TWS NQ and ES has been released
today.

I am uploading it to file area in TWS API. I hope everyone who
want to download it will be able to get it from there.

Some features I want to mention are authomated trailing stops,
authomated exits from bad trade, risk monitoring. Also i like 1 click
to fill orders or reverse position.. no confirmation, no
transmit..saves time a lot.

another link to download is:


if you want to read about it go to:


Let me know what do you think




To unsubscribe from this group, send an email to:
twsapi-unsubscribe@...



Your use of Yahoo! Groups is subject to the .


Re: What is the String for sending trade data to IB?

gringo_problematico
 

Scott,

Thanks so much. The Events and Methods link would be a great help.
Looking forward to accessing it.
Glenn


--- In twsapi@y..., "marinindextrader" <marinindextrader@y...> wrote:
Its really straight forward:

The syntax is:

[TWS object].placeOrder(long id, String action, long quantity,
String
symbol, String secType, String expiry, float strike, String right,
String exchange, String currency, String orderType, float
lmtprice,
float auxPrice)

If your TWS object is Named TWS1 then an example using your
predefined variables (you left a couple out, I added 'em) would
be:

id = 1
action = "BUY"
quantity = 1
symbol = "ES"
secType = "FUT"
expiry = "200209"
strike = 0
right = ""
exchange = "GLOBEX"
curency = ""
orderType = "STP_LMT
lmtPrice = 1000.00
auxPrice = 1000.25

TWS1.placeOrder(id, action, quantity, symbol, secType, expiry,
strike, right, exchange, orderType, lmtPrice, auxPrice)

This would place a Stop Limit Order to Buy (ostensibly Cover) 1 ES
contract whose trigger price is 1000.00, with a willing slip
of .25
or auxPrice of 1000.25

Note: Right and Currencey are VB keywords. I myslef have re-named
all
of my variables to prefix them with TWS...such as TWSright...just
to
be safe...another keyword is used in other calls: Status. This too
could be problamatical and should be noted.

I noticed that you had an account identifier...no such identifier
is
warranted or available as far as I know. The account
identification
is predicated on the instance of TWS you log on with. If you have
two
accounts and want access or read them from the same instance of
your
custom application...you must log onto seperate instances of TWS
for
each account. In each case you must have a seperate socket port to
differentiate the accounts on the client side.

You can then create a control array of the TWS objects, and
refrence
your calls and methods based on the indecie of the TWS object.

For more information on multiple account handling, check out these
two posts:





There is a VB project in the files section that demonstrates auto
ID
sequencing, user defined ID incrament values, a Market Order using
literals, and a dynamic storage array that records your order
calls.
Check that out too....

I hope this helps

Scott

PS:

I am going to link the Events and Methods syntax help files to the
Board Home page tonite...its long overdue....

--- In twsapi@y..., "gringo_problematico"
<gringo_problematico@y...>
wrote:
I have a friend who is writing code for an an autoexecute
program.
I need to get the protocol? or string used to send the trade
data
to
IB.


ie.

id = 1 '
symbol = "ES"
secType = "FUT"
expiry = "200209"
strike = 0
right = ""
exchange = "GLOBEX"
curency = ""
acct name =

All that kind of stuff. Hope I dont sound too stupid.

Thanks in advance


Re: twsapi: Authomated Trading for TWS

Manuel Knospe
 

Hello TraderGuard,
is it possible to connect your program to any third party software to execute trades fully automated (e.g. TradeStation2000i)?
Thanks
MK

----- Original Message -----
Sent: Saturday, July 13, 2002 4:18 AM
Subject: twsapi: Authomated Trading for TWS

TraderGuard ver. 3.00.b02 for IB TWS NQ and ES has been released
today.

I am uploading it to file area in TWS API. I hope everyone who
want to download it will be able to get it from there.

Some features I want to mention are authomated trailing stops,
authomated exits from bad trade, risk monitoring. Also i like 1 click
to fill orders or reverse position.. no confirmation, no
transmit..saves time a lot.

another link to download is:


if you want to read about it go to:


Let me know what do you think




To unsubscribe from this group, send an email to:
twsapi-unsubscribe@...



Your use of Yahoo! Groups is subject to the .


Re: to marinindextrader

marinindextrader
 

First off: If you have an .exe to upload, you must also provide the
source code in the form of a project. Posting of packaged .exe's
without source is not permitted. I would ask you: Whats the point?

Your are welcome to post a link to an ancillary download in the Third
Party Application bookmark folder. However, that link should point to
a page that describes the software, its use and methods....Ideally on
those pages would be your download link, and/or a contact link to
request a copy of your software.

The TWS API files area is for uploading example projects with source
code, and other files that further the general community. Uploading
is generally unrestricted to all members...but I watch the files
section to ensure that the content is open code, and that the source
code pertains to the general underlying intent of this board: The
Exchange of Ideas and Information related to IB's TWS API.

Fire me a private email if you would like to discuss this further.

Scott







Further, it is requisite that you have a well documented web page
describing the operation, methods and premise of the .exe. Open ended
shallow .exe files will not last but two flicks of the lambs tail...

--- In twsapi@y..., traderguard <no_reply@y...> wrote:
How can I upload a file to the File area??
Or this is no longer available to users?

AMJ


to marinindextrader

traderguard
 

How can I upload a file to the File area??
Or this is no longer available to users?

AMJ


Authomated Trading for TWS

traderguard
 

TraderGuard ver. 3.00.b02 for IB TWS NQ and ES has been released
today.

I am uploading it to file area in TWS API. I hope everyone who
want to download it will be able to get it from there.

Some features I want to mention are authomated trailing stops,
authomated exits from bad trade, risk monitoring. Also i like 1 click
to fill orders or reverse position.. no confirmation, no
transmit..saves time a lot.

another link to download is:


if you want to read about it go to:


Let me know what do you think


Apology

marinindextrader
 

That email that was intended to be a private query was broadcast...

I apologize if it offended anyone with its frank discourse

Scott <--------- neophyte board boss

Fire me....


Re: What is the String for sending trade data to IB?

marinindextrader
 

Its really straight forward:

The syntax is:

[TWS object].placeOrder(long id, String action, long quantity, String
symbol, String secType, String expiry, float strike, String right,
String exchange, String currency, String orderType, float lmtprice,
float auxPrice)

If your TWS object is Named TWS1 then an example using your
predefined variables (you left a couple out, I added 'em) would be:

id = 1
action = "BUY"
quantity = 1
symbol = "ES"
secType = "FUT"
expiry = "200209"
strike = 0
right = ""
exchange = "GLOBEX"
curency = ""
orderType = "STP_LMT
lmtPrice = 1000.00
auxPrice = 1000.25

TWS1.placeOrder(id, action, quantity, symbol, secType, expiry,
strike, right, exchange, orderType, lmtPrice, auxPrice)

This would place a Stop Limit Order to Buy (ostensibly Cover) 1 ES
contract whose trigger price is 1000.00, with a willing slip of .25
or auxPrice of 1000.25

Note: Right and Currencey are VB keywords. I myslef have re-named all
of my variables to prefix them with TWS...such as TWSright...just to
be safe...another keyword is used in other calls: Status. This too
could be problamatical and should be noted.

I noticed that you had an account identifier...no such identifier is
warranted or available as far as I know. The account identification
is predicated on the instance of TWS you log on with. If you have two
accounts and want access or read them from the same instance of your
custom application...you must log onto seperate instances of TWS for
each account. In each case you must have a seperate socket port to
differentiate the accounts on the client side.

You can then create a control array of the TWS objects, and refrence
your calls and methods based on the indecie of the TWS object.

For more information on multiple account handling, check out these
two posts:





There is a VB project in the files section that demonstrates auto ID
sequencing, user defined ID incrament values, a Market Order using
literals, and a dynamic storage array that records your order calls.
Check that out too....

I hope this helps

Scott

PS:

I am going to link the Events and Methods syntax help files to the
Board Home page tonite...its long overdue....

--- In twsapi@y..., "gringo_problematico" <gringo_problematico@y...>
wrote:
I have a friend who is writing code for an an autoexecute program.
I need to get the protocol? or string used to send the trade data
to
IB.


ie.

id = 1 '
symbol = "ES"
secType = "FUT"
expiry = "200209"
strike = 0
right = ""
exchange = "GLOBEX"
curency = ""
acct name =

All that kind of stuff. Hope I dont sound too stupid.

Thanks in advance


Re: twsapi: Re: Java API, ordering question

Christian Czirnich
 

Hi,

<When I submit an order of type MKT, it will sell stocks at whatever
<the market bid price happens to be when I submit the order ? and it
<will buy stocks at whatever the market ask price happens to be ?
<Also, I am still curious about what happens if it is not able to find
<all the stocks I am requesting at one price. I assume it will do
<partial fills with different prices. I can tell this because there is
<the average price coming in to orderStatus() event. Is it possible to
<tell how many of the stocks were purchased at what price without
<doing any guessing ?

That's what the market order is expected to do. It will get you in or out of the market on the next available price/prices, regardless of the sharesize. On July 2nd, IDPH gave a great example what happens, if you sell 1 million shares at the market (8 $ down in 2 minutes, back near normal during the next 30 minutes) So with a market order you can be sure, you'r in or out. A market order will also get you in on any short, but it will wait for the next uptick, so you can't know the level you will be filled in advance, if the order is entered on a downtick.
Unless a stock is halted during the execution of your order, there is no partial fill. In comparison a limit order might or might not fill or you might get a partial fill, depending on the shares available at your level.

I'm not sure if the API provides all the details of the executions, but you can get all the details concerning the different fills from the Executions Window on IB's Trader Workstation. IMHO, for P/L calculation it should be sufficient to work with the average price, as this is the price you paid plus one times commission.

Have a nice weekend,

croc




Thanks.

--- In twsapi@y..., "marinindextrader" <marinindextrader@y...> wrote:
Market Order Price Values are ignored or not required...

A proper MKT order call looks like this in a literal sense:

Call PlaceNewOrder("BUY", 1, "ES", "FUT", "200209",
0, "", "GLOBEX", "", "MKT", 0, 0)

This is a MKT order call for one contract of September ES on the
Globex Exchange. Of course one can use variables of proper type in
lieu of literals...

In order to asses the results of your Market Order you will need to
use: Call reqExecutions

The data will then be fed back through the openOrder1(), openOrder2
(), and orderStatus() Events where they can be captured, analyzed
and
diseminated...

Begin by reading the TWS API help files. Though brief in nature,
they
are concise and indespensible in understanding how all of the
events
and methods tie together...

Events Syntax:


X_Other/activexevents.htm

Methods Syntax:


X_Other/activexmethods.htm

Properties Syntax:


X_Other/activexproperties.htm


Scott


--- In twsapi@y..., usernew <no_reply@y...> wrote:
When I say qty=500, and market order type, price = 20.00,
how does IB fulfill the order if it is not able to find all 500
shares at 20.00 ? How will I know the prices at which different
portions were bought ? What else should I be careful of while
using
MKT order type.

Thanks.


To unsubscribe from this group, send an email to:
twsapi-unsubscribe@...



Your use of Yahoo! Groups is subject to

r
------------------------------------------------------------------------------------
CZIRNICH , WOLF und Kollegen
Rechtsanwaelte

Rechtsanwalt Christian Czirnich
Taetigkeitsbereich EDV- und Onlinerecht
Fachjournalist fr Rechtsthemen

Noerdliche Auffahrtsallee 65
80638 Mnchen
Tel.: +49-89-17862-112
Tel.: 0700-CZIRNICH
Fax: 49-89-17862-120

E-Mail: christian.czirnich@...
URL: www.onlinekanzlei.de


What is the String for sending trade data to IB?

gringo_problematico
 

I have a friend who is writing code for an an autoexecute program.
I need to get the protocol? or string used to send the trade data to
IB.


ie.

id = 1 '
symbol = "ES"
secType = "FUT"
expiry = "200209"
strike = 0
right = ""
exchange = "GLOBEX"
curency = ""
acct name =

All that kind of stuff. Hope I dont sound too stupid.

Thanks in advance


Re: twsapi: Charting App using TWS price feed

C. Prins
 

Thanks for all the input. Great.
However excel is on another notebook as TWS and global server, because
excel of office 2000 doesn't work on windows 2000, where tws and GS
are.

So first I have to install a couple of things, but all your help it
shouldn't be a problem

many thanks again

Regards,
Cees

Friday, July 12, 2002, 5:38:24 PM, you wrote:

Is it working now for you?
----- Original Message -----
From: kjcj
To: twsapi@...
Sent: Friday, July 12, 2002 9:19 AM
Subject: Re: twsapi: Charting App using TWS price feed

WOW.... I will try your method also... I tried what I put in and it worked as well.... However, I suspect that your method is more general and correct, as in my case the ID# will change every
time I start the spreadsheet and so I'd have to change the MS everytime....?
Thanks for your help!!!!!!!!!!!!!!!!!!!!!!!!! Great...... really.... now if only I'd make my million I'd send you half!
K
----- Original Message -----
From: Shukrainternationals
To: twsapi@...
Sent: Friday, July 12, 2002 3:12 PM
Subject: Re: twsapi: Charting App using TWS price feed

In Metaserver:
(i) Against 'Symbol Name', you put your symbol (whatever you have typed in column #1 in your TWSDde.xls spread sheet. Make sure you type it in same case (upper case or lower case).
It is also important you have the same symbol in your global server (upper case or lower case).
(i)Next, against DDE: you type 'excel.exe'.
(ii) Then, go into 'Trade/Volume'.
(iii) there, against 'DDE Topic' you put' TWSDde.xls'.
(iv) Then, against 'DDE Item' you put 'R15C13'.
It means row 15 and column 13.
----- Original Message -----
From: kjcj
To: twsapi@...
Sent: Friday, July 12, 2002 8:55 AM
Subject: Re: twsapi: Charting App using TWS price feed

Yes MetaServer pops up... and I have the row and column # from Excel.....
In MS Symbol name I put in: DAX?
Yahoo! Groups Sponsor
ADVERTISEMENT


To unsubscribe from this group, send an email to:
twsapi-unsubscribe@...


Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

--


Re: twsapi: Charting App using TWS price feed

Shukrainternationals
 

Is it working now for you?

----- Original Message -----
From: kjcj
Sent: Friday, July 12, 2002 9:19 AM
Subject: Re: twsapi: Charting App using TWS price feed

WOW.... I will try your method also... I tried what I put in and it worked as well.... However, I suspect that your method is more general and correct, as in my case the ID# will change every time I start the spreadsheet and so I'd have to change the MS everytime....?
Thanks for your help!!!!!!!!!!!!!!!!!!!!!!!!! Great...... really.... now if only I'd make my million I'd send you half!
K
----- Original Message -----
Sent: Friday, July 12, 2002 3:12 PM
Subject: Re: twsapi: Charting App using TWS price feed

In Metaserver:
(i) Against 'Symbol Name', you put your symbol (whatever you have typed in column #1 in your TWSDde.xls spread sheet. Make sure you type it in same case (upper case or lower case).
It is also important you have the same symbol in your global server (upper case or lower case).
(i)Next, against DDE: you type 'excel.exe'.
(ii) Then, go into 'Trade/Volume'.
(iii) there, against 'DDE Topic' you put' TWSDde.xls'.
(iv) Then, against 'DDE Item' you put 'R15C13'.
It means row 15 and column 13.
----- Original Message -----
From: kjcj
Sent: Friday, July 12, 2002 8:55 AM
Subject: Re: twsapi: Charting App using TWS price feed

Yes MetaServer pops up... and I have the row and column # from Excel.....
In MS Symbol name I put in: DAX?


To unsubscribe from this group, send an email to:
twsapi-unsubscribe@...



Your use of Yahoo! Groups is subject to the .


Re: twsapi: Charting App using TWS price feed

C. Prins
 

Yes, like I "told" you :-)

Friday, July 12, 2002, 2:34:07 PM, you wrote:

I did not follow DAX until now, but, now I entered DAX in TWSDde.xls DAX-200209). Under exchange, I typed DTB. I requested data and it is showing quotes and the quotes are changing. Did you use DTB
exchange?
----- Original Message -----
From: kjcj
To: twsapi@... ; cprins@...
Sent: Friday, July 12, 2002 8:00 AM
Subject: Re: Re[2]: twsapi: Charting App using TWS price feed

Many thanks all for that... That is exactly what I did ... I got the TWSDDE.xls and installed it all ... It installs into C:&#92;IBJTS&#92;Excel.....
(Cees, I presume you also put in the Expiry cell "200209") ... But when I press Ctrl+R or the request market data, all I get is zeros... no error, but no data either.... and I am subscribed to
DAX .... is there anything else that you can think of???
As for asking IB, that too is exactly what I did and asked them how come I don't get the data appearing in the spreadsheet.... but of course, no reply yet... or possibly ever.... ;-(
Thanks in advance for your further help....
Karel

----- Original Message -----
From: C. Prins
To: kjcj
Sent: Friday, July 12, 2002 8:19 PM
Subject: Re[2]: twsapi: Charting App using TWS price feed

I also try to get metaserver working but I don't know how to configure
it for TWS too.
However in excel is no problem.
make sure you enable DDE and ActiveX in TWS settings
start the TWSDDE.xls in C:&#92;jts&#92;excel
allow excel to run macro's
Go to the tab tickers
on line 5 put in your IB username
type in Symbol AX in type FUT and Exchange DTB
put the cursor in the field AX push the button reguest market data in
line row 2 and ...... presto DAX data
But now the solution for Tradestation via metaserver......
Regards,
Cees
mailto:cprins@...
Friday, July 12, 2002, 12:05:06 PM, you wrote:
> Thanks Scott... The question is mainly with the MetaServer Demo and what exact information one must put into it for IB DDE to be linking and MetaServer Demo to be capturing the data, which
then I
> can pass to the TS2000i GlobalServer (TradeStation)....
> In fact, I cannot also get the TWS Excel s/s DDE to link and work with IB's DAX Futures data, but that is another question, which I asked IB... and as yet no reply whatever....
> If anyone knows what needs to be put into the TWS Excel s/s DDE cell to display the IB's DAX Futures data, that too would be most appreciated.
> Regards....

> ----- Original Message -----
> From: marinindextrader
> To: twsapi@...
> Sent: Friday, July 12, 2002 7:50 PM
> Subject: Re: twsapi: Charting App using TWS price feed

> You MAY...
> But try an be specific as to exactley what your problem is. If this
> problem is related to TS2000i (whatever that is), you might not get
> to many replies...
> Don't get upset. It just means your either fishing with the wrong
> bait, or fishing in the wrong pond
> Scott
> --- In twsapi@y..., "kjcj" <kjcj@o...> wrote:
> > Can I respectfully ask anyone on the list if you could provide some
> help with this, please..... I have TS2000i and now the Demo, but I am
> darned if I can follow their "help" notes .... I am sure you will
> think me simple, but if you have got it working, could you offer some
> notes, please, it would be most appreciated..... I have asked few
> people off the list, but got no replies.... ;-((
> >
> > Thank you, Karel.
> > ----- Original Message -----
> > From: weitau
> > To: twsapi@y...
> > Sent: Friday, July 12, 2002 4:07 PM
> > Subject: Re: twsapi: Charting App using TWS price feed
> >
> >
> > Try this:
> >
> >
> >
> > select "DDE Pro" tryout version.
> >
> >
> > --- In twsapi@y..., "cprins1408" <cprins@c...> wrote:
> > > Thanks for the input "shukrainternationals"
> > >
> > > However can't find (any) demo software at metaserver.com
> > > perhaps you have a demo for me.
> > >
> > > I already own Tradestation 2000i
> > >
> > > Thanks
> > > Cees
> >
> >
> > Yahoo! Groups Sponsor
> > ADVERTISEMENT
> >
> >
> >
> > To unsubscribe from this group, send an email to:
> > twsapi-unsubscribe@y...
> >
> >
> >
> > Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> Service.

> Yahoo! Groups Sponsor
> ADVERTISEMENT


> To unsubscribe from this group, send an email to:
> twsapi-unsubscribe@...


> Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.


--



To unsubscribe from this group, send an email to:
twsapi-unsubscribe@...


Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

Yahoo! Groups Sponsor

To unsubscribe from this group, send an email to:
twsapi-unsubscribe@...


Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

--


Re: twsapi: Charting App using TWS price feed

kjcj
 

WOW.... I will try your method also... I tried what I put in and it worked as well.... However, I suspect that your method is more general and correct, as in my case the ID# will change every time I start the spreadsheet and so I'd have to change the MS everytime....?
Thanks for your help!!!!!!!!!!!!!!!!!!!!!!!!! Great...... really.... now if only I'd make my million I'd send you half!
K

----- Original Message -----
Sent: Friday, July 12, 2002 3:12 PM
Subject: Re: twsapi: Charting App using TWS price feed

In Metaserver:
(i) Against 'Symbol Name', you put your symbol (whatever you have typed in column #1 in your TWSDde.xls spread sheet. Make sure you type it in same case (upper case or lower case).
It is also important you have the same symbol in your global server (upper case or lower case).
(i)Next, against DDE: you type 'excel.exe'.
(ii) Then, go into 'Trade/Volume'.
(iii) there, against 'DDE Topic' you put' TWSDde.xls'.
(iv) Then, against 'DDE Item' you put 'R15C13'.
It means row 15 and column 13.
----- Original Message -----
From: kjcj
Sent: Friday, July 12, 2002 8:55 AM
Subject: Re: twsapi: Charting App using TWS price feed

Yes MetaServer pops up... and I have the row and column # from Excel.....
In MS Symbol name I put in: DAX?


Re: twsapi: Charting App using TWS price feed

kjcj
 

I think I figured it out... Cees see below.....

----- Original Message -----
From: kjcj
Sent: Friday, July 12, 2002 2:55 PM
Subject: Re: twsapi: Charting App using TWS price feed

Yes MetaServer pops up... and I have the row and column # from Excel.....get the infor from that particular row for the symbol I am collecting
In MS Symbol name I put in: DAX
in DDE put in: your user name that is in the TWSDDE.xls
In Trade/Volume, Trade Record is ticked, and DDE Topic is:tik .... and the DDE Item is: id(plus number displayed in your xls for that particular symbol)?last, eg. for me, it is: id29?last
And whatever the pattern is in these fields I just duplicate for all the other fields, right? eg. id29?LastSize for Inc. Volume and the GlobalServer does the rest..... and so on
K
----- Original Message -----
Sent: Friday, July 12, 2002 2:45 PM
Subject: Re: twsapi: Charting App using TWS price feed

You now know where DAX is in the TWDde.xls. Write down its row number and column number of its last price. The column of the last price must be 13. Let us say, the row # is 15 and column # is 13.. Write it down and keep it aside.
If you have installed Metaserver correctly, (I presume you have), then, once you bring up Global server 'on-line' you should get Metaserver window popping up. Do this happen? Once you get Global server up on-line and Metaserver window pops up come back and we talk. If you want to go through this process fast and want to make your $million today itself :), then give me a call (905) 257 3554) once you have Metaserver window up.
----- Original Message -----
From: kjcj
Sent: Friday, July 12, 2002 8:35 AM
Subject: Re: twsapi: Charting App using TWS price feed

YES !!!! .... I tried just plain old DAX ***AGAIN***and it isworking now!!! ..... I don't know why it did not work before.... Now to the next step of using the MetaServer..... If you can advise, much appreciated ....
Thanks.....
----- Original Message -----
Sent: Friday, July 12, 2002 1:45 PM
Subject: Re: twsapi: Charting App using TWS price feed

First, you have to get the quotes from IB workstation in to TWSDde.xls.xls spread sheet supplied by IB. Call IB technical support and they will help you on phone to download TWSDde.xls from their web site and how to install and where to install it. It should be installed in "C:/JTS/excel" directory.Once you install TWSDde.xls, ask the tech support how to start receiving quotes into this spread sheet from the workstation. Once you are successful, come back and I will tell you how to proceed. You cannot run Metaserverbefore successfully receivingquotes into TWSDde.xls ssheet because, Metaserver gets its data from TWSDde.xls
----- Original Message -----
From: kjcj
Sent: Friday, July 12, 2002 6:05 AM
Subject: Re: twsapi: Charting App using TWS price feed

Thanks Scott... The question is mainly with the MetaServer Demo and what exact informationone mustput into itfor IB DDE to be linking and MetaServer Demo to be capturing the data, which then I can pass to the TS2000i GlobalServer (TradeStation)....
In fact, I cannot also get the TWS Excel s/s DDE to link and work with IB's DAX Futures data, but that is another question, which I asked IB... and as yet no reply whatever....
If anyone knows what needs to be put into the TWS Excel s/s DDE cell to display the IB's DAX Futures data, that toowould be most appreciated.
Regards....
----- Original Message -----
Sent: Friday, July 12, 2002 7:50 PM
Subject: Re: twsapi: Charting App using TWS price feed

You MAY...

But try an be specific as to exactley what your problem is. If this
problem is related to TS2000i (whatever that is), you might not get
to many replies...

Don't get upset. It just means your either fishing with the wrong
bait, or fishing in the wrong pond

Scott

--- In twsapi@y..., "kjcj" <kjcj@o...> wrote:
> Can I respectfully ask anyone on the list if you could provide some
help with this, please..... I have TS2000i and now the Demo, but I am
darned if I can follow their "help" notes .... I am sure you will
think me simple, but if you have got it working, could you offer some
notes, please, it would be most appreciated..... I have asked few
people off the list, but got no replies.... ;-((
>
> Thank you, Karel.
> ----- Original Message -----
> From: weitau
> To: twsapi@y...
> Sent: Friday, July 12, 2002 4:07 PM
> Subject: Re: twsapi: Charting App using TWS price feed
>
>
> Try this:
>
>
>
> select "DDE Pro" tryout version.
>
>
> --- In twsapi@y..., "cprins1408" wrote:
> > Thanks for the input "shukrainternationals"
> >
> > However can't find (any) demo software at metaserver.com
> > perhaps you have a demo for me.
> >
> > I already own Tradestation 2000i
> >
> > Thanks
> > Cees
>
>
> Yahoo! Groups Sponsor
> ADVERTISEMENT
>
>
>
> To unsubscribe from this group, send an email to:
> twsapi-unsubscribe@y...
>
>
>
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.



To unsubscribe from this group, send an email to:
twsapi-unsubscribe@...



Your use of Yahoo! Groups is subject to the .


To unsubscribe from this group, send an email to:
twsapi-unsubscribe@...



Your use of Yahoo! Groups is subject to the .


To unsubscribe from this group, send an email to:
twsapi-unsubscribe@...



Your use of Yahoo! Groups is subject to the .


To unsubscribe from this group, send an email to:
twsapi-unsubscribe@...



Your use of Yahoo! Groups is subject to the .


To unsubscribe from this group, send an email to:
twsapi-unsubscribe@...



Your use of Yahoo! Groups is subject to the .


To unsubscribe from this group, send an email to:
twsapi-unsubscribe@...



Your use of Yahoo! Groups is subject to the .


Re: twsapi: Charting App using TWS price feed

Shukrainternationals
 

In Metaserver:
(i) Against 'Symbol Name', you put your symbol (whatever you have typed in column #1 in your TWSDde.xls spread sheet. Make sure you type it in same case (upper case or lower case).
It is also important you have the same symbol in your global server (upper case or lower case).
(i)Next, against DDE: you type 'excel.exe'.
(ii) Then, go into 'Trade/Volume'.
(iii) there, against 'DDE Topic' you put' TWSDde.xls'.
(iv) Then, against 'DDE Item' you put 'R15C13'.
It means row 15 and column 13.

----- Original Message -----
From: kjcj
Sent: Friday, July 12, 2002 8:55 AM
Subject: Re: twsapi: Charting App using TWS price feed

Yes MetaServer pops up... and I have the row and column # from Excel.....
In MS Symbol name I put in: DAX?
in DDE I put in: my user name... or Excel.exe or ???
In Trade/Volume, Trade Record is ticked, and DDE Topic is: .....? and the DDE Item is: .....?
And whatever the pattern is in these fields I just duplicate for all the other fields, right?
K
----- Original Message -----
Sent: Friday, July 12, 2002 2:45 PM
Subject: Re: twsapi: Charting App using TWS price feed

You now know where DAX is in the TWDde.xls. Write down its row number and column number of its last price. The column of the last price must be 13. Let us say, the row # is 15 and column # is 13.. Write it down and keep it aside.
If you have installed Metaserver correctly, (I presume you have), then, once you bring up Global server 'on-line' you should get Metaserver window popping up. Do this happen? Once you get Global server up on-line and Metaserver window pops up come back and we talk. If you want to go through this process fast and want to make your $million today itself :), then give me a call (905) 257 3554) once you have Metaserver window up.
----- Original Message -----
From: kjcj
Sent: Friday, July 12, 2002 8:35 AM
Subject: Re: twsapi: Charting App using TWS price feed

YES !!!! .... I tried just plain old DAX ***AGAIN***and it isworking now!!! ..... I don't know why it did not work before.... Now to the next step of using the MetaServer..... If you can advise, much appreciated ....
Thanks.....
----- Original Message -----
Sent: Friday, July 12, 2002 1:45 PM
Subject: Re: twsapi: Charting App using TWS price feed

First, you have to get the quotes from IB workstation in to TWSDde.xls.xls spread sheet supplied by IB. Call IB technical support and they will help you on phone to download TWSDde.xls from their web site and how to install and where to install it. It should be installed in "C:/JTS/excel" directory.Once you install TWSDde.xls, ask the tech support how to start receiving quotes into this spread sheet from the workstation. Once you are successful, come back and I will tell you how to proceed. You cannot run Metaserverbefore successfully receivingquotes into TWSDde.xls ssheet because, Metaserver gets its data from TWSDde.xls
----- Original Message -----
From: kjcj
Sent: Friday, July 12, 2002 6:05 AM
Subject: Re: twsapi: Charting App using TWS price feed

Thanks Scott... The question is mainly with the MetaServer Demo and what exact informationone mustput into itfor IB DDE to be linking and MetaServer Demo to be capturing the data, which then I can pass to the TS2000i GlobalServer (TradeStation)....
In fact, I cannot also get the TWS Excel s/s DDE to link and work with IB's DAX Futures data, but that is another question, which I asked IB... and as yet no reply whatever....
If anyone knows what needs to be put into the TWS Excel s/s DDE cell to display the IB's DAX Futures data, that toowould be most appreciated.
Regards....
----- Original Message -----
Sent: Friday, July 12, 2002 7:50 PM
Subject: Re: twsapi: Charting App using TWS price feed

You MAY...

But try an be specific as to exactley what your problem is. If this
problem is related to TS2000i (whatever that is), you might not get
to many replies...

Don't get upset. It just means your either fishing with the wrong
bait, or fishing in the wrong pond

Scott

--- In twsapi@y..., "kjcj" <kjcj@o...> wrote:
> Can I respectfully ask anyone on the list if you could provide some
help with this, please..... I have TS2000i and now the Demo, but I am
darned if I can follow their "help" notes .... I am sure you will
think me simple, but if you have got it working, could you offer some
notes, please, it would be most appreciated..... I have asked few
people off the list, but got no replies.... ;-((
>
> Thank you, Karel.
> ----- Original Message -----
> From: weitau
> To: twsapi@y...
> Sent: Friday, July 12, 2002 4:07 PM
> Subject: Re: twsapi: Charting App using TWS price feed
>
>
> Try this:
>
>
>
> select "DDE Pro" tryout version.
>
>
> --- In twsapi@y..., "cprins1408" wrote:
> > Thanks for the input "shukrainternationals"
> >
> > However can't find (any) demo software at metaserver.com
> > perhaps you have a demo for me.
> >
> > I already own Tradestation 2000i
> >
> > Thanks
> > Cees
>
>
> Yahoo! Groups Sponsor
> ADVERTISEMENT
>
>
>
> To unsubscribe from this group, send an email to:
> twsapi-unsubscribe@y...
>
>
>
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.



To unsubscribe from this group, send an email to:
twsapi-unsubscribe@...



Your use of Yahoo! Groups is subject to the .


To unsubscribe from this group, send an email to:
twsapi-unsubscribe@...



Your use of Yahoo! Groups is subject to the .


To unsubscribe from this group, send an email to:
twsapi-unsubscribe@...



Your use of Yahoo! Groups is subject to the .


To unsubscribe from this group, send an email to:
twsapi-unsubscribe@...



Your use of Yahoo! Groups is subject to the .


To unsubscribe from this group, send an email to:
twsapi-unsubscribe@...



Your use of Yahoo! Groups is subject to the .


To unsubscribe from this group, send an email to:
twsapi-unsubscribe@...



Your use of Yahoo! Groups is subject to the .


Re: twsapi: Charting App using TWS price feed

kjcj
 

Yes MetaServer pops up... and I have the row and column # from Excel.....
In MS Symbol name I put in: DAX?
in DDE I put in: my user name... or Excel.exe or ???
In Trade/Volume, Trade Record is ticked, and DDE Topic is: .....? and the DDE Item is: .....?
And whatever the pattern is in these fields I just duplicate for all the other fields, right?
K

----- Original Message -----
Sent: Friday, July 12, 2002 2:45 PM
Subject: Re: twsapi: Charting App using TWS price feed

You now know where DAX is in the TWDde.xls. Write down its row number and column number of its last price. The column of the last price must be 13. Let us say, the row # is 15 and column # is 13.. Write it down and keep it aside.
If you have installed Metaserver correctly, (I presume you have), then, once you bring up Global server 'on-line' you should get Metaserver window popping up. Do this happen? Once you get Global server up on-line and Metaserver window pops up come back and we talk. If you want to go through this process fast and want to make your $million today itself :), then give me a call (905) 257 3554) once you have Metaserver window up.
----- Original Message -----
From: kjcj
Sent: Friday, July 12, 2002 8:35 AM
Subject: Re: twsapi: Charting App using TWS price feed

YES !!!! .... I tried just plain old DAX ***AGAIN***and it isworking now!!! ..... I don't know why it did not work before.... Now to the next step of using the MetaServer..... If you can advise, much appreciated ....
Thanks.....
----- Original Message -----
Sent: Friday, July 12, 2002 1:45 PM
Subject: Re: twsapi: Charting App using TWS price feed

First, you have to get the quotes from IB workstation in to TWSDde.xls.xls spread sheet supplied by IB. Call IB technical support and they will help you on phone to download TWSDde.xls from their web site and how to install and where to install it. It should be installed in "C:/JTS/excel" directory.Once you install TWSDde.xls, ask the tech support how to start receiving quotes into this spread sheet from the workstation. Once you are successful, come back and I will tell you how to proceed. You cannot run Metaserverbefore successfully receivingquotes into TWSDde.xls ssheet because, Metaserver gets its data from TWSDde.xls
----- Original Message -----
From: kjcj
Sent: Friday, July 12, 2002 6:05 AM
Subject: Re: twsapi: Charting App using TWS price feed

Thanks Scott... The question is mainly with the MetaServer Demo and what exact informationone mustput into itfor IB DDE to be linking and MetaServer Demo to be capturing the data, which then I can pass to the TS2000i GlobalServer (TradeStation)....
In fact, I cannot also get the TWS Excel s/s DDE to link and work with IB's DAX Futures data, but that is another question, which I asked IB... and as yet no reply whatever....
If anyone knows what needs to be put into the TWS Excel s/s DDE cell to display the IB's DAX Futures data, that toowould be most appreciated.
Regards....
----- Original Message -----
Sent: Friday, July 12, 2002 7:50 PM
Subject: Re: twsapi: Charting App using TWS price feed

You MAY...

But try an be specific as to exactley what your problem is. If this
problem is related to TS2000i (whatever that is), you might not get
to many replies...

Don't get upset. It just means your either fishing with the wrong
bait, or fishing in the wrong pond

Scott

--- In twsapi@y..., "kjcj" <kjcj@o...> wrote:
> Can I respectfully ask anyone on the list if you could provide some
help with this, please..... I have TS2000i and now the Demo, but I am
darned if I can follow their "help" notes .... I am sure you will
think me simple, but if you have got it working, could you offer some
notes, please, it would be most appreciated..... I have asked few
people off the list, but got no replies.... ;-((
>
> Thank you, Karel.
> ----- Original Message -----
> From: weitau
> To: twsapi@y...
> Sent: Friday, July 12, 2002 4:07 PM
> Subject: Re: twsapi: Charting App using TWS price feed
>
>
> Try this:
>
>
>
> select "DDE Pro" tryout version.
>
>
> --- In twsapi@y..., "cprins1408" wrote:
> > Thanks for the input "shukrainternationals"
> >
> > However can't find (any) demo software at metaserver.com
> > perhaps you have a demo for me.
> >
> > I already own Tradestation 2000i
> >
> > Thanks
> > Cees
>
>
> Yahoo! Groups Sponsor
> ADVERTISEMENT
>
>
>
> To unsubscribe from this group, send an email to:
> twsapi-unsubscribe@y...
>
>
>
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.



To unsubscribe from this group, send an email to:
twsapi-unsubscribe@...



Your use of Yahoo! Groups is subject to the .


To unsubscribe from this group, send an email to:
twsapi-unsubscribe@...



Your use of Yahoo! Groups is subject to the .


To unsubscribe from this group, send an email to:
twsapi-unsubscribe@...



Your use of Yahoo! Groups is subject to the .


To unsubscribe from this group, send an email to:
twsapi-unsubscribe@...



Your use of Yahoo! Groups is subject to the .


To unsubscribe from this group, send an email to:
twsapi-unsubscribe@...



Your use of Yahoo! Groups is subject to the .


Re: twsapi: Charting App using TWS price feed

Shukrainternationals
 

You now know where DAX is in the TWDde.xls. Write down its row number and column number of its last price. The column of the last price must be 13. Let us say, the row # is 15 and column # is 13.. Write it down and keep it aside.
If you have installed Metaserver correctly, (I presume you have), then, once you bring up Global server 'on-line' you should get Metaserver window popping up. Do this happen? Once you get Global server up on-line and Metaserver window pops up come back and we talk. If you want to go through this process fast and want to make your $million today itself :), then give me a call (905) 257 3554) once you have Metaserver window up.

----- Original Message -----
From: kjcj
Sent: Friday, July 12, 2002 8:35 AM
Subject: Re: twsapi: Charting App using TWS price feed

YES !!!! .... I tried just plain old DAX ***AGAIN***and it isworking now!!! ..... I don't know why it did not work before.... Now to the next step of using the MetaServer..... If you can advise, much appreciated ....
Thanks.....
----- Original Message -----
Sent: Friday, July 12, 2002 1:45 PM
Subject: Re: twsapi: Charting App using TWS price feed

First, you have to get the quotes from IB workstation in to TWSDde.xls.xls spread sheet supplied by IB. Call IB technical support and they will help you on phone to download TWSDde.xls from their web site and how to install and where to install it. It should be installed in "C:/JTS/excel" directory.Once you install TWSDde.xls, ask the tech support how to start receiving quotes into this spread sheet from the workstation. Once you are successful, come back and I will tell you how to proceed. You cannot run Metaserverbefore successfully receivingquotes into TWSDde.xls ssheet because, Metaserver gets its data from TWSDde.xls
----- Original Message -----
From: kjcj
Sent: Friday, July 12, 2002 6:05 AM
Subject: Re: twsapi: Charting App using TWS price feed

Thanks Scott... The question is mainly with the MetaServer Demo and what exact informationone mustput into itfor IB DDE to be linking and MetaServer Demo to be capturing the data, which then I can pass to the TS2000i GlobalServer (TradeStation)....
In fact, I cannot also get the TWS Excel s/s DDE to link and work with IB's DAX Futures data, but that is another question, which I asked IB... and as yet no reply whatever....
If anyone knows what needs to be put into the TWS Excel s/s DDE cell to display the IB's DAX Futures data, that toowould be most appreciated.
Regards....
----- Original Message -----
Sent: Friday, July 12, 2002 7:50 PM
Subject: Re: twsapi: Charting App using TWS price feed

You MAY...

But try an be specific as to exactley what your problem is. If this
problem is related to TS2000i (whatever that is), you might not get
to many replies...

Don't get upset. It just means your either fishing with the wrong
bait, or fishing in the wrong pond

Scott

--- In twsapi@y..., "kjcj" <kjcj@o...> wrote:
> Can I respectfully ask anyone on the list if you could provide some
help with this, please..... I have TS2000i and now the Demo, but I am
darned if I can follow their "help" notes .... I am sure you will
think me simple, but if you have got it working, could you offer some
notes, please, it would be most appreciated..... I have asked few
people off the list, but got no replies.... ;-((
>
> Thank you, Karel.
> ----- Original Message -----
> From: weitau
> To: twsapi@y...
> Sent: Friday, July 12, 2002 4:07 PM
> Subject: Re: twsapi: Charting App using TWS price feed
>
>
> Try this:
>
>
>
> select "DDE Pro" tryout version.
>
>
> --- In twsapi@y..., "cprins1408" wrote:
> > Thanks for the input "shukrainternationals"
> >
> > However can't find (any) demo software at metaserver.com
> > perhaps you have a demo for me.
> >
> > I already own Tradestation 2000i
> >
> > Thanks
> > Cees
>
>
> Yahoo! Groups Sponsor
> ADVERTISEMENT
>
>
>
> To unsubscribe from this group, send an email to:
> twsapi-unsubscribe@y...
>
>
>
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.



To unsubscribe from this group, send an email to:
twsapi-unsubscribe@...



Your use of Yahoo! Groups is subject to the .


To unsubscribe from this group, send an email to:
twsapi-unsubscribe@...



Your use of Yahoo! Groups is subject to the .


To unsubscribe from this group, send an email to:
twsapi-unsubscribe@...



Your use of Yahoo! Groups is subject to the .


To unsubscribe from this group, send an email to:
twsapi-unsubscribe@...



Your use of Yahoo! Groups is subject to the .