ChangeMarketPosition

From MultiCharts
Revision as of 11:37, 25 January 2012 by 194.84.116.138 (talk) (Created page with "Places the order with set name and price on the chart. Though when auto trading is off the order will not be sent to a broker. ==== Usage ==== <syntaxhighlight>ChangeMarket...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Places the order with set name and price on the chart. Though when auto trading is off the order will not be sent to a broker.

Usage

ChangeMarketPosition (Delta, Price, Name)

Where: Delta - number of contracts by which current market position should be changed;

Price - order filling price;

Name - name of the order that changes the position.

Notes

Can be used as a mean of synchronization of strategy market position with a broker.

Example

If MarketPosition = 2 then ChangeMarketPosition (-2,100,"LX")

Will place close order with the name “LX” and the price 100 if current marketposition =2

If MarketPosition = 0 then ChangeMarketPosition (-2,100,"SE")

Will place open order with the name “SE” and the price 100 if current marketposition =0