Search found 106 matches

by ppan
08 May 2013
Forum: MultiCharts
Topic: How to Get Microseconds Data [SOLVED]
Replies: 3
Views: 2398

Re: How to Get Microseconds Data [SOLVED]

It works. Thanks.
by ppan
08 May 2013
Forum: MultiCharts
Topic: How to Get Microseconds Data [SOLVED]
Replies: 3
Views: 2398

How to Get Microseconds Data [SOLVED]

There is microseconds data in the database of MC 8.7. How to get it to use in PowerLanguage?
by ppan
15 Sep 2011
Forum: MultiCharts
Topic: Can't change the window height of MC
Replies: 1
Views: 942

Can't change the window height of MC

The window height of MC can't be changed to very small. Is there any setting to change it?
by ppan
29 Apr 2011
Forum: MultiCharts
Topic: What is OCO Group?
Replies: 5
Views: 1614

Re: What is OCO Group?

Thanks very much.
by ppan
28 Apr 2011
Forum: MultiCharts
Topic: What is OCO Group?
Replies: 5
Views: 1614

What is OCO Group?

In broker setting, there is OCO group. What is it?
What is "use native oco group", "reduce size oco" and "overfill protection"?
by ppan
20 Apr 2011
Forum: MultiCharts
Topic: Problem with Stop Limit Order
Replies: 3
Views: 1522

Re: Problem with Stop Limit Order

I'm using IB and the symbol is HSIJ11. The procedure is: 1. After the market price is higher than high, the IB will buy 100 contracts at the price of high + 1 using limit order. 2. While IB is buying the 100 contracts and not yet finished, the new 1 min bar is produced. Then a new sell stop limit or...
by ppan
20 Apr 2011
Forum: MultiCharts
Topic: Problem with Stop Limit Order
Replies: 3
Views: 1522

Problem with Stop Limit Order

I have a 1 min chart with the following code: ----------------------------------------------------------------- if marketposition <> 1 then buy 100 contracts next bar at high stop high + 1 limit; if marketposition <> -1 then sell 100 contracts next bar at low stop low - 1 limit; --------------------...
by ppan
12 Jan 2011
Forum: MultiCharts
Topic: AUTOTRADING PROBLEM
Replies: 24
Views: 4806

Re: AUTOTRADING PROBLEM

Hi,

I have checked the logs. Only "B1" and "S1" signal in the log.
by ppan
11 Jan 2011
Forum: MultiCharts
Topic: Text_New funtion for tick bar
Replies: 6
Views: 1769

Re: Text_New funtion for tick bar

Hi Dave,

Do you have any suggestion?
by ppan
11 Jan 2011
Forum: MultiCharts
Topic: AUTOTRADING PROBLEM
Replies: 24
Views: 4806

AUTOTRADING PROBLEM

I have a 1 min chart with the following system: ------------------------------------------------------------------------------------ IF MARKETPOSITION = 0 THEN BEGIN BUY ("B1") 1 CONTRACTS NEXT BAR AT MARKET; BUY ("B2") 1 CONTRACTS NEXT BAR AT MARKET; END; IF MARKETPOSITION = 1 THEN BEGIN SELL ("S1"...
by ppan
06 Jan 2011
Forum: MultiCharts
Topic: Text_New funtion for tick bar
Replies: 6
Views: 1769

Re: Text_New funtion for tick bar

Hi TJ,

I don't need the sub-seconds level analysis. I just need the bar level analysis. There is a bar no. for each bar. I think just use bar no. instead of time_s to plot the text can solve the problem.
by ppan
06 Jan 2011
Forum: MultiCharts
Topic: Text_New funtion for tick bar
Replies: 6
Views: 1769

Re: Text_New funtion for tick bar

Hi TJ,

From example, there are 10 ticks have the same time stamp of 15:00:00. If I want to plot the text on each of the tick bar, the TEXT_NEW_S cannot locate the exact bar I want to plot.
by ppan
05 Jan 2011
Forum: MultiCharts
Topic: Text_New funtion for tick bar
Replies: 6
Views: 1769

Text_New funtion for tick bar

The Text_New_s cannot be applied for tick bar because there are many tick bars has the same time. Is there any plan for adding "Text_New_Bar" function for each bar?
by ppan
29 Dec 2010
Forum: MultiCharts
Topic: Missing Tick in MC Chart
Replies: 8
Views: 2156

Re: Missing Tick in MC Chart

Dear Dave,

Thanks for your solution. The MC tick chart is returned to normal now.
Thanks very much.
by ppan
24 Dec 2010
Forum: MultiCharts
Topic: Missing Tick in MC Chart
Replies: 8
Views: 2156

Re: Missing Tick in MC Chart

Dear Dave,

Have you watch the video? Did you find any problem with MC?
by ppan
22 Dec 2010
Forum: MultiCharts
Topic: Auto Close in Auto Trade
Replies: 5
Views: 1970

Re: Auto Close in Auto Trade

SUPER,

Thanks for your code.
However, if there is no new tick or new trade near the closing time, how can the system close automatically?
by ppan
22 Dec 2010
Forum: MultiCharts
Topic: Missing Tick in MC Chart
Replies: 8
Views: 2156

Re: Missing Tick in MC Chart

I have already enabled the "Generate a new tick if Total Volume changes" option.
http://www.screencast.com/t/iSGUJcHVB4u
From the video, you can see the NT chart record all the trades of the "time & sales" but the MC chart miss some trades.
by ppan
21 Dec 2010
Forum: MultiCharts
Topic: Auto Close in Auto Trade
Replies: 5
Views: 1970

Auto Close in Auto Trade

The setexitonclose is useless in autotrade because MC will send the order after the exchange is closed. MC should place the close order to the exchange before it is closed. So MC need a "Auto close time setting" to set the auto close time before the exchange is closed.
by ppan
21 Dec 2010
Forum: MultiCharts
Topic: Missing Tick in MC Chart
Replies: 8
Views: 2156

Missing Tick in MC Chart

I'm using IB. I found the tick chart of MC didn't plot all the trades that recorded in TWS's time & sales. However, the tick chart of NT plot all the trades of the time & sales. Is there any method to make the MC plot all the trades like NT?
by ppan
21 Dec 2010
Forum: MultiCharts
Topic: Buy without cover all Sell
Replies: 5
Views: 1321

Re: Buy without cover all Sell

Dear Dave,

I just want MC has the 2 NT commands to solve the problem:
1. enterlong()
2. entershort()

Please forward my request to the developers.`

Thanks
by ppan
18 Dec 2010
Forum: MultiCharts
Topic: Buy without cover all Sell
Replies: 5
Views: 1321

Re: Buy without cover all Sell

Dear Dave, Please refer prev post: https://www.multicharts.com/discussion/viewtopic.php?t=5710&highlight= If I have bought 10 contracts and I want to sell 1 contract each time, I have to write 10 line of "SELL" statement. However, If I have bought 10000 contracts and I want to sell 1 contract each t...
by ppan
16 Dec 2010
Forum: MultiCharts
Topic: Buy without cover all Sell
Replies: 5
Views: 1321

Buy without cover all Sell

Is there a feature to buy a new contract without auto cover all the Sell position in MC 7.0?
by ppan
01 Dec 2010
Forum: MultiCharts
Topic: Stop Limit orders
Replies: 42
Views: 14014

Re: Stop Limit orders

Will the Stop Limit orders be implemented in the Multicharts 7.0?
by ppan
03 Sep 2010
Forum: MultiCharts
Topic: Access Data2 for Scanner Indicator
Replies: 1
Views: 644

Access Data2 for Scanner Indicator

Can the indicator in the scanner access other symbol or data2?
by ppan
15 Jun 2010
Forum: MultiCharts
Topic: Stop Limit orders
Replies: 42
Views: 14014

Will the Stop Limit order be added in the MC 6 release?
by ppan
07 May 2010
Forum: MultiCharts
Topic: Problem with Limit Order
Replies: 0
Views: 1192

Problem with Limit Order

I apply the following code to a 1 tick chart. I set it allow up to 100 entry oder in the strategy properties. The design of the strategy is to buy 5 contracts from the market. However, after turning on the Auto Trading, MC always buy more than 5 contracts. Is there any solution for this problem? ___...
by ppan
22 Feb 2010
Forum: MultiCharts
Topic: Neural Network
Replies: 1
Views: 1718

Neural Network

Is there any neural network software can be used to make indicator in Multicharts?
by ppan
19 Jan 2010
Forum: MultiCharts
Topic: Stop Limit orders
Replies: 42
Views: 14014

I agree with Janus. There is no need to put the stop limit order in back testing. The stop limit order is used for real time trading. MC should have this feature as fast as possible because it is very useful in real time trading.
by ppan
16 Dec 2009
Forum: MultiCharts
Topic: How to use eSignal in Auto Trading?
Replies: 3
Views: 3273

I'm using MC for auto trading. The real time data is come from eSignal. The broker is IB. The Options symbol of eSignal and IB are not the same. How to set up the auto trading?
by ppan
15 Dec 2009
Forum: MultiCharts
Topic: How to use eSignal in Auto Trading?
Replies: 3
Views: 3273

How to use eSignal in Auto Trading?

I use eSignal to plot a chart of an stock option. I want to trade the option using IB. The symbol of the option in eSignal and IB are not the same. How can I set up the Symbol Dictionary?
by ppan
14 Dec 2009
Forum: MultiCharts
Topic: How to trade between ticks?
Replies: 2
Views: 1142

How to trade between ticks?

For example: Stock1 is data1: 9:00 10.00 9:05 11.00 Stock2 is data2: 9:00 1.00 9:01 2.00 9:02 3.00 9:03 4.00 9:04 5.00 9:05 6.00 I want to trade stock1 based on the price of stock2. At 9:02, the price of stock2 is 3.00 and the price of stock1 is 10.00(no change from 9:00). I want to buy 100 share of...
by ppan
11 Dec 2009
Forum: MultiCharts
Topic: How to trade option using IOG?
Replies: 1
Views: 780

How to trade option using IOG?

My chart setup: data1: stock option data2: stock Code: --------------------------------------------------- [INTRABARORDERGENERATION = TRUE] IF C OF DATA2 > C[1] OF DATA2 THEN BEGIN BUY THIS BAR AT CLOSE; END; IF C OF DATA2 < C[1] OF DATA2 THEN BEGIN SELL THIS BAR AT CLOSE; END; ---------------------...
by ppan
11 Dec 2009
Forum: MultiCharts
Topic: Can't Sync with the Broker
Replies: 14
Views: 3890

I use sych mode.
by ppan
10 Dec 2009
Forum: MultiCharts
Topic: Can't Sync with the Broker
Replies: 14
Views: 3890

No error.
The system start with -1 position in the broker. The marketposition is 0 but the marketposition_at_broker is -1. The buytocover is based on the marketposition. So MC don't cover the -1 position at broker because the marketposition is 0.
by ppan
10 Dec 2009
Forum: MultiCharts
Topic: Can't Sync with the Broker
Replies: 14
Views: 3890

The MarketPosition_at_broker shows -1.
by ppan
09 Dec 2009
Forum: MultiCharts
Topic: Can't Sync with the Broker
Replies: 14
Views: 3890

Can't Sync with the Broker

Before auto trade is turned on, the position in the broker is -1.
After auto trade is turned on, the BUYTOCOVER cannot cover the -1 position in the broker.

The following is the signal code:
IF MARKETPOSITION_AT_BROKER = -1 THEN BEGIN
BUYTOCOVER NEXT BAR AT MARKET;
END;
by ppan
15 Sep 2009
Forum: MultiCharts
Topic: Help in Autotrading -- INTRABARPERSIST
Replies: 2
Views: 1540

Did anyone try and has the same problem?
by ppan
09 Sep 2009
Forum: MultiCharts
Topic: Help in Autotrading -- INTRABARPERSIST
Replies: 2
Views: 1540

Help in Autotrading -- INTRABARPERSIST

I have the following code in a 1 min chart. I use it for autotrading. After I turn on the autotrading, no buy signal present. If I delete the "INTRABARPERSIST", the buy signal can be executed. Is there anything wrong with my code? Or something wrong with the MC? //-----------------------------------...
by ppan
08 Sep 2009
Forum: MultiCharts
Topic: Time Exit at a Specific Time
Replies: 15
Views: 4235

Will this method work if there is no new trade record after the specific time?
by ppan
28 Jul 2009
Forum: MultiCharts
Topic: Incorrect Max Drawdown
Replies: 4
Views: 5698

Incorrect Max Drawdown

The "Max Intraday Drawdown" in Optimization report of Portfolio backtester is incorrect.
by ppan
23 Jul 2009
Forum: MultiCharts
Topic: Cannot Download MC 5.5 Beta 3
Replies: 2
Views: 2232

Cannot Download MC 5.5 Beta 3

The page shows:
Forbidden
You don't have permission to access /support/downloads/ on this server.
by ppan
15 Jun 2009
Forum: MultiCharts
Topic: Re-send the last stop & limit order in autotrader
Replies: 3
Views: 1430

For example, my system use 1 hour bar chart. If the market start at 9:00, the system will generate a stop order at 10:00 for 10:00-11:00. Then the system will generate another stop order at 11:00 for 11:00-12:00. If I start to auto trade the system at 10:30, the system will not re-send the stop orde...
by ppan
14 Jun 2009
Forum: MultiCharts
Topic: Re-send the last stop & limit order in autotrader
Replies: 3
Views: 1430

Re-send the last stop & limit order in autotrader

Although there is an option to tell MC the default position in Auto Trade, I also want the MC has an option to re-send the last stop & limit order.
by ppan
11 Jun 2009
Forum: MultiCharts
Topic: Historical data request pacing violation
Replies: 1
Views: 1305

Historical data request pacing violation

There are many "Historical data request pacing violation" error when downloading historical tick data from IB. Is it the problem of IB or MC?
by ppan
09 Jun 2009
Forum: MultiCharts
Topic: Download Data from IB
Replies: 5
Views: 2243

Where is the 'Collect Data without Plotting' option?
by ppan
03 Jun 2009
Forum: MultiCharts
Topic: Download Data from IB
Replies: 5
Views: 2243

Download Data from IB

How to download data from IB without ploting the chart?
by ppan
27 May 2009
Forum: MultiCharts
Topic: Problem with Auto Trading
Replies: 3
Views: 2016

I'm using 15 min bar and not using IOG. This case is rare because the happen probability is not high. However, I found it in real time trading.
by ppan
27 May 2009
Forum: MultiCharts
Topic: Problem with Auto Trading
Replies: 3
Views: 2016

Problem with Auto Trading

In Auto Trade Option: 1. Using Async mode. 2. Select the "Convert unexecuted limit/stop entry orders to market orders" after 10 seconds. MC will convert the stop order to market order. However, If there is a new stop order is generated before the market order is executed, MC will replace the market ...
by ppan
18 May 2009
Forum: MultiCharts
Topic: Stop Limit orders
Replies: 42
Views: 14014

Andrew, I think the backtesting for stop-limit is quite complicated but not very useful. I only need MC to convert the stop order to stop-limit order in auto trading. For example, 1. MC can add a AUTO-LIMIT value and AUTO-TIME value in auto trading option. 2. If the AUTO-LIMIT value is present, the ...
by ppan
06 May 2009
Forum: MultiCharts
Topic: Stop Limit orders
Replies: 42
Views: 14014

The stop limit order is very useful for auto trading.
by ppan
29 Apr 2009
Forum: MultiCharts
Topic: [Bug Report] BUY & SELL ORDER
Replies: 6
Views: 2513

Sorry, I got a mistake.
by ppan
29 Apr 2009
Forum: MultiCharts
Topic: [Bug Report] BUY & SELL ORDER
Replies: 6
Views: 2513

Hi SUPER,

I want to sell 1 contract every minute after buy 50 contracts until no more position.

I don't know if the code is right.
by ppan
28 Apr 2009
Forum: MultiCharts
Topic: [Bug Report] BUY & SELL ORDER
Replies: 6
Views: 2513

[Bug Report] BUY & SELL ORDER

Try the following code in a 1 minute chart. Turn on the Position Limits: Signal -> Properties -> Select the "Allow up to 100 entry orders" and Select the "regardless of the entry that generated the order". The S1 will exit 1 contract only. Is it a bug?: ----------------------------------------------...
by ppan
02 Mar 2009
Forum: MultiCharts
Topic: STILL HAS THE BUG IN MC 5.0 BETA 3
Replies: 3
Views: 2288

The bug still exist in beta 4.
by ppan
24 Feb 2009
Forum: MultiCharts
Topic: STILL HAS THE BUG IN MC 5.0 BETA 3
Replies: 3
Views: 2288

STILL HAS THE BUG IN MC 5.0 BETA 3

Try the following code in a 1 minute chart. Turn on the Position Limits: Signal -> Properties -> Select the "Allow up to 10 entry orders" and Select the "regardless of the entry that generated the order". The S5 will exit 2 contracts. Is it a bug?: ---------------------------------------------------...
by ppan
22 Feb 2009
Forum: MultiCharts
Topic: VOTE FOR MC FEATURES TO BE IMPLEMENTED
Replies: 53
Views: 30587

Add Stop-Limit Order and all TWS supported orders.
by ppan
15 Jan 2009
Forum: MultiCharts
Topic: When will the new version come out?
Replies: 3
Views: 1824

When will the new version come out?

When will the new version come out?
by ppan
23 Dec 2008
Forum: MultiCharts
Topic: No "Last Price Marker" in Data2
Replies: 0
Views: 1515

No "Last Price Marker" in Data2

When 2 symbols are ploted together in the same chart, there is no "Last Price Marker" for the Data2.
by ppan
11 Dec 2008
Forum: MultiCharts
Topic: DIFFERENT RESULT WITH TS2K
Replies: 10
Views: 4283

You should turn on the Position Limits:
Signal -> Properties -> Select the "Allow up to 10 entry orders" and Select the "regardless of the entry that generated the order"

Then you can see there are 2 "S5" sell orders.
by ppan
09 Dec 2008
Forum: MultiCharts
Topic: Some features I wish to have before Gold release
Replies: 23
Views: 9333

Add: LONG and SHORT command. The difference between the BUY, SELL, LONG, SHORT command: The BUY command will cover all short positions before buy. The LONG command will not cover the short positions. It just buy 1 contract. The SHORT command will cover all long positions before sell. The SHORT comma...
by ppan
09 Dec 2008
Forum: MultiCharts
Topic: DIFFERENT RESULT WITH TS2K
Replies: 10
Views: 4283

Hi Super,

The above code cannot be run in TS. It can be run in MC. You can see the bug on the MC chart.
by ppan
09 Dec 2008
Forum: MultiCharts
Topic: DIFFERENT RESULT WITH TS2K
Replies: 10
Views: 4283

You can try another example: ---------------------------------------------------------------------------- var: _counter(0) ; VARS: COUNTER2(0); SETEXITONCLOSE; IF DATE <> DATE[1] THEN BEGIN FOR COUNTER2 = 1 TO 2 BEGIN BUY ("B1") 5 CONTRACTS NEXT BAR AT MARKET; END; _counter = 0 ; END; IF DATE = DATE...
by ppan
07 Dec 2008
Forum: MultiCharts
Topic: DIFFERENT RESULT WITH TS2K
Replies: 10
Views: 4283

DIFFERENT RESULT WITH TS2K

I have the following signal and apply in a 1 min chart. ---------------------------------------------------------------------------- SETEXITONCLOSE; IF DATE <> DATE[1] THEN BEGIN BUY ("B1") NEXT BAR AT MARKET; BUY ("B2") NEXT BAR AT MARKET; BUY ("B3") NEXT BAR AT MARKET; END; IF TIME = 1000 THEN BEG...
by ppan
30 Oct 2008
Forum: MultiCharts
Topic: WRONG RESULT IN SIGNAL
Replies: 3
Views: 2351

I expect the "SELL ("S1") " will sell 1 contract in each 30 min bar until there is no buy position remain.
May be my code is wrong. How can I write the code?
by ppan
29 Oct 2008
Forum: MultiCharts
Topic: WRONG RESULT IN SIGNAL
Replies: 3
Views: 2351

WRONG RESULT IN SIGNAL

I have the following signal and apply in a 30 min chart. ---------------------------------------------------------------------------- SETEXITONCLOSE; IF DATE <> DATE[1] THEN BEGIN BUY ("B1") 5 CONTRACTS NEXT BAR AT MARKET; BUY ("B2") 5 CONTRACTS NEXT BAR AT MARKET; END; IF DATE = DATE[1] THEN BEGIN ...
by ppan
28 Oct 2008
Forum: MultiCharts
Topic: How to turn off strategy order event notifications
Replies: 2
Views: 1500

I found this problem too. It may be better if MC put all the messages in a message window. The user can choose to close the message window if he don't want to see the messages.
by ppan
21 Oct 2008
Forum: MultiCharts
Topic: Problem with TWS 888.2
Replies: 2
Views: 1401

Problem with TWS 888.2

There is a error message come out when I use the autotrading with the TWS 888.2.
by ppan
15 Oct 2008
Forum: MultiCharts
Topic: Outside Regular Trading Hours Message
Replies: 2
Views: 1378

Outside Regular Trading Hours Message

I got the following message in auto trading. What is it means? ------------------------------------------------------------------------------------- Message: Interactive Broders Order Event Warning: Attribute 'Outside Regular Trading Hours' is ignored based on the order type and destination. PlaceOr...
by ppan
15 Oct 2008
Forum: MultiCharts
Topic: Multiple systems in MC
Replies: 9
Views: 3220

I tried to put 2 different systems in one chart. The P/L for the 2 systems is not the same as the sum of the 2 systems seperately put in one chart.
by ppan
15 Oct 2008
Forum: MultiCharts
Topic: Auto Trading PROBLEM
Replies: 6
Views: 2386

Auto Trading PROBLEM

The MC place the stop order for next bar after the next bar is appeared. Sometimes the next bar moves too fast then the slippage become bigger. For example, the time of current bar is 11:00 in an one hour chart. If there is no trade price before 12:01, the stop order for 12:00 will not be placed. Af...
by ppan
15 Oct 2008
Forum: MultiCharts
Topic: Multiple systems in MC
Replies: 9
Views: 3220

Multiple systems in MC

MC can trade multiple systems in autotrading, but I cannot put multiple systems in one chart. I should use one system per chart.
Can MC use multiple systems in one chart in the future? I think this is a very useful feature.
by ppan
09 Oct 2008
Forum: MultiCharts
Topic: A feature request : SetTimedExit
Replies: 7
Views: 3770

Good suggestion. It is a very useful feature. Support.
by ppan
25 Sep 2008
Forum: MultiCharts
Topic: When the stop-limit order will be added?
Replies: 6
Views: 2513

I found the stop-limit feature in NT Trader. As a trader, I like to have more control to the orders. So I hope MC will have this feature too.
by ppan
25 Sep 2008
Forum: MultiCharts
Topic: Chart Window Loading...
Replies: 10
Views: 4138

I'm using 4.0 beta 3 too.
This bug does not always appear.
by ppan
21 Sep 2008
Forum: MultiCharts
Topic: Chart Window Loading...
Replies: 10
Views: 4138

Chart Window Loading...

After the chart is loaded, the "Chart Window Loading..." is still on the windows title bar.
by ppan
01 Sep 2008
Forum: MultiCharts
Topic: LAG IN 1 TICK CHART
Replies: 7
Views: 2504

I use the MC 4.0 beta 1 (build 1440) and NT 6.5. The 2 programs are installed in the same computer and connected to the same IB data feed at the same time. I'm using a Q6600 cpu with 4G RAM so I think the computer speed is fast enough. Both plot a 1 tick chart in real time. I use the Camtasia Studio...
by ppan
01 Sep 2008
Forum: User Contributed Studies and Indicator Library
Topic: SETEXITONCLOSE in auto trading
Replies: 10
Views: 6032

Thanks for your code. Very useful.
by ppan
01 Sep 2008
Forum: MultiCharts
Topic: LAG IN 1 TICK CHART
Replies: 7
Views: 2504

Using MC 4.0 with IB. I run the MC and NT together with the same symbol in the same computer. The tick chart of MC is slower than NT.
by ppan
01 Sep 2008
Forum: MultiCharts
Topic: LAG IN 1 TICK CHART
Replies: 7
Views: 2504

LAG IN 1 TICK CHART

The updating speed of 1 tick chart is slower than the quote. There is no such problem in NT Trader chart.
by ppan
29 Aug 2008
Forum: User Contributed Studies and Indicator Library
Topic: SETEXITONCLOSE in auto trading
Replies: 10
Views: 6032

Super,

Where is the code?
by ppan
28 Aug 2008
Forum: MultiCharts
Topic: When the stop-limit order will be added?
Replies: 6
Views: 2513

When the stop-limit order will be added?

The stop-limit order is very useful for real time trading. When the MC will have this feature?
by ppan
28 Aug 2008
Forum: User Contributed Studies and Indicator Library
Topic: SETEXITONCLOSE in auto trading
Replies: 10
Views: 6032

Super,

Your code is correct but I should use 1 min or 5 min bar to run the system. If I use 30 min bar or 15 min bar, the system will exit 30 min or 15 min before the market close. The exit price and the real market close may have a big difference.
by ppan
27 Aug 2008
Forum: User Contributed Studies and Indicator Library
Topic: SETEXITONCLOSE in auto trading
Replies: 10
Views: 6032

SETEXITONCLOSE in auto trading

The SETEXITONCLOSE cannot close all the open positions before the market close in auto trading. How to use the SETEXITONCLOSE in Auto Trading?
by ppan
20 Aug 2008
Forum: MultiCharts
Topic: The Max Intraday Drawdown is incorrect
Replies: 20
Views: 6427

The Max Intraday Drawdown is incorrect

The Max Intraday Drawdown in Optimization Report of Portfolio Backtester is incorrect.
by ppan
14 Aug 2008
Forum: MultiCharts
Topic: Can I assign the current market position in Auto Trading?
Replies: 33
Views: 10782

Can I assign the current market position in Auto Trading?

After connection loss or re-compile the signal, the auto trading will be stopped be automatically. If the auto trading is started again, the MC will assume that the current marketposition is 0. Can I assign the current market position and current contracts in Auto Trading?
by ppan
11 Aug 2008
Forum: MultiCharts
Topic: What is the difference between Sync and Async?
Replies: 2
Views: 1758

What is the difference between Sync and Async?

What is the difference between Sync and Async in Auto Trading?
by ppan
25 Jul 2008
Forum: MultiCharts
Topic: Please add Warrant in the Category
Replies: 2
Views: 1426

Please add Warrant in the Category

I can trade the Warrants in IB TWS but cannot trade them using MC. Please add the Warrant in MC.
by ppan
26 Apr 2008
Forum: MultiCharts
Topic: Still no Warrant in MC 3.0
Replies: 0
Views: 1296

Still no Warrant in MC 3.0

Will the Warrant be added in the next version?
by ppan
18 Mar 2008
Forum: MultiCharts
Topic: MC cannot start if there is no internet
Replies: 20
Views: 8897

Why a registered MultiCharts need to have authorization to run EACH TIME?
It is not fair to the user because it will create more RISK in trading.
by ppan
16 Mar 2008
Forum: MultiCharts
Topic: MC cannot start if there is no internet
Replies: 20
Views: 8897

MC cannot start if there is no internet

The MC cannot start when there is no internet connected. Is it a bug? There is no such problem in v2.1. How to solve this problem?
by ppan
26 Nov 2007
Forum: MultiCharts
Topic: Roadmap for MC
Replies: 25
Views: 9347

I'm using IB with the Hong Kong Stock Exchange data. You can search the warrants using IB's contract search:
www.interactivebrokers.co.uk/contract_info/index.php
Exchange: SEHK
Symbol: HSI
Contract Type: Warrant
by ppan
26 Nov 2007
Forum: MultiCharts
Topic: Roadmap for MC
Replies: 25
Views: 9347

Will you also add the Warrants type instruments? I think it is very easy.
by ppan
20 Nov 2007
Forum: MultiCharts
Topic: Auto Trade 2 Accounts
Replies: 1
Views: 1040

Auto Trade 2 Accounts

Can I auto trade 2 accounts in one computer? How?
by ppan
20 Nov 2007
Forum: MultiCharts
Topic: Roadmap for MC
Replies: 25
Views: 9347

Thanks
by ppan
19 Nov 2007
Forum: MultiCharts
Topic: Roadmap for MC
Replies: 25
Views: 9347

Will the limit order and stop order in autotrading be added in next version?
by ppan
18 Nov 2007
Forum: MultiCharts
Topic: Roadmap for MC
Replies: 25
Views: 9347

Roadmap for MC

Is there any roadmap for the future development of MC?
by ppan
15 Nov 2007
Forum: MultiCharts
Topic: Scale Trading Problem
Replies: 1
Views: 1058

Scale Trading Problem

I found it is difficult to program the scale trading using the buy, sellshort commands. Because they will cover all opposite positions. So I should check the current position and use the buytocover and sell command. Can you add the 'plain buy' and 'plain sell' command to the MC at the future?
by ppan
28 Oct 2007
Forum: MultiCharts
Topic: Problem in Auto Trading 2 systems
Replies: 5
Views: 1883

Is there any method or program can trade the same symbol in different time frames and systems?
Will you add this feature in the future?
by ppan
25 Oct 2007
Forum: MultiCharts
Topic: Problem in Auto Trading 2 systems
Replies: 5
Views: 1883

Problem in Auto Trading 2 systems

I set up 2 one minute charts with same symbol and then apply the following system to the 2 charts: IF C > C[1] THEN BUY NEXT BAR AT MARKET; IF C < C[1] THEN SELLSHORT NEXT BAR AT MARKET; After a new signal, the total open contracts will be added by 2, e.g. 2, 4, 6, 8. I think this is a buy of the au...
by ppan
19 Oct 2007
Forum: MultiCharts
Topic: Strategy Drawdown
Replies: 3
Views: 2056

Can I find the Max Intraday Drawdown in the Performance report?
by ppan
18 Oct 2007
Forum: MultiCharts
Topic: Strategy Drawdown
Replies: 3
Views: 2056

Strategy Drawdown

There is a Max Strategy Drawdown in the Performance report and there is also a Max Intraday Drawdown in the Optimization report. The value is not the same. What is the difference? Can I find the Max Intraday Drawdown in the Performance report?
by ppan
12 Oct 2007
Forum: MultiCharts
Topic: Telequote Data Source
Replies: 1
Views: 1750

Telequote Data Source

I found you have an ondemand server for Telequote. Will you add the Telequote data source to MC?
by ppan
27 Sep 2007
Forum: MultiCharts
Topic: Cannot Export to Rina
Replies: 1
Views: 1416

Cannot Export to Rina

I saved the system report in xml format. Then I use the Rina 7 to import it but the Rina show a lot of errors and cannot import the file.
by ppan
12 Sep 2007
Forum: MultiCharts
Topic: Ascii Mapping is very slow
Replies: 5
Views: 3437

I found when the Norton Anti-virus is running, the ploting speed is slower. How to make the MC run faster if I don't want to disable the Norton Anti-virus program?
by ppan
11 Sep 2007
Forum: MultiCharts
Topic: Cannot View other Workspace during Optimization
Replies: 1
Views: 1175

Cannot View other Workspace during Optimization

When the optimization is running in one chart, other workspaces or charts cannot be viewed.
by ppan
27 Aug 2007
Forum: MultiCharts
Topic: Setexitonclose in Auto Trading
Replies: 3
Views: 1672

Setexitonclose in Auto Trading

I'm using 15 mins bar for auto trading. If the market close at 15:15 and I want to exit all position at 15:05. How can I set the Setexitonclose command to exit earlier?

Go to advanced search