Search found 37 matches

by steven
17 Feb 2012
Forum: MultiCharts
Topic: exit order problems
Replies: 2
Views: 924

exit order problems

Dears, After the entry of my strategy, there are several exits were fired for the exits position, Some times the price of these 2 exits are very closed, when the price waves hot, these exit might be all filled, and the extra exit will be another entry, please advise is there any solution for avoidin...
by steven
29 Dec 2011
Forum: MultiCharts
Topic: Advanced math tools
Replies: 1
Views: 858

Advanced math tools

Dear MC,

Is there any package for advanced math tools, like curve fitting, multivariate function solving, and linear algebra?

Thanks,
Steven
by steven
21 Jun 2011
Forum: MultiCharts
Topic: per trade & per contract
Replies: 3
Views: 737

Re: per trade & per contract

i got it, thx TJ.
by steven
21 Jun 2011
Forum: MultiCharts
Topic: per trade & per contract
Replies: 3
Views: 737

Re: per trade & per contract

1 contract
by steven
21 Jun 2011
Forum: MultiCharts
Topic: per trade & per contract
Replies: 3
Views: 737

per trade & per contract

Dear,

what's the difference between per trade and per contract on commission setting?
I found there is no impact on performance report.

Regards,
Steven
by steven
24 May 2011
Forum: MultiCharts
Topic: OCO group for entry
Replies: 14
Views: 2064

Re: OCO group for entry

with the above code, 1. the orders will be effective for one bar. At the end of the bar, if none of the conditions are met, the orders will be cancelled. 2. If the buy order is hit, the sellshort order will still sit there until the bar is closed. 3. if the buy order is hit, then the sellshort orde...
by steven
24 May 2011
Forum: MultiCharts
Topic: OCO group for entry
Replies: 14
Views: 2064

Re: OCO group for entry

have you read this section?

EasyLanguage Essentials Programmers Guide
Built-in Stops.......... pg. 90

i have read that, for set-exit-order, it works fine with TOUCHANCE plugin.

Steven
by steven
24 May 2011
Forum: MultiCharts
Topic: OCO group for entry
Replies: 14
Views: 2064

Re: OCO group for entry

Dear TJ,

I've add the "expectation" in my post, pls check.
Coz i'm the china agent(TOUCHANCE) of MC, we want to let our users to use this function, so I need the exactly info to pass to our engineers for implement. we donnt use IB .

Steven
by steven
24 May 2011
Forum: MultiCharts
Topic: OCO group for entry
Replies: 14
Views: 2064

Re: OCO group for entry

let me make it simple, May I use below codes to implentment OCO? If not, can you tell the exactly behaviors for below 2 codes? code 1, entry with OCO: expectation: "buy" and "sell" orders are posted at the same time, when anyone of them was filled, cancel the other one. if marketposition = 0 then be...
by steven
23 May 2011
Forum: MultiCharts
Topic: OCO group for entry
Replies: 14
Views: 2064

Re: OCO group for entry

Dear TJ,

Thanks for the reply, I've read your post for OCO usage, it's just for "set-exit-type" orders ,
Is that means OCO cannot work for REGULAR orders?

Steven
by steven
20 May 2011
Forum: MultiCharts
Topic: OCO group for entry
Replies: 14
Views: 2064

Re: OCO group for entry

Dear TJ, what I supposed is when the condition is met in bar#1, both buy and sell orders was posted in the beginning of bar#2, if the buy order was filled during the bar#2, then canncel the sell one. I saw your guide about the OCO, the sample code just for order closure, is that means it can be only...
by steven
20 May 2011
Forum: MultiCharts
Topic: OCO group for entry
Replies: 14
Views: 2064

OCO group for entry

Dear TS,

For OCO group, may I use below code for entry?

Code: Select all

if marketposition = 0 then
begin
buy("BUY") next bar close+10 stop;
sellshort("Sell") next bar close-1 stop;
end;
by steven
12 Apr 2011
Forum: MultiCharts
Topic: marketposition & marketposition_checked
Replies: 6
Views: 1716

Re: marketposition & marketposition_checked

Is that means If I put a long position at broker(All brokers) manually, I can print "MarketPosition_at_Broker_for_The_Strategy = 1" ?
by steven
12 Apr 2011
Forum: MultiCharts
Topic: marketposition & marketposition_checked
Replies: 6
Views: 1716

Re: marketposition & marketposition_checked

what's about MarketPosition_at_Broker_for_The_Strategy?
is it the same as MarketPosition_at_Broker, just can be used with Interactive Brokers, Patsystems, and Zen-Fire. ?

Steven
by steven
01 Nov 2010
Forum: MultiCharts
Topic: marketposition & marketposition_checked
Replies: 6
Views: 1716

marketposition & marketposition_checked

Hi Everyone,

Is there any difference between marketposition & marketposition_checked ?

Thanks,
Steven
by steven
21 Oct 2010
Forum: MultiCharts
Topic: about portfolio backtester
Replies: 1
Views: 1036

about portfolio backtester

Dear,

How many symbols and how many data can be loaded in the portfolio backtester at most?

Thanks,
Steven
by steven
18 Oct 2010
Forum: MultiCharts
Topic: Function for finding the 'N'th highest price in M days
Replies: 5
Views: 1311

Re: Function for finding the 'N'th highest price in M days

Got it, Thanks CrazyNasdaq and TJ.

Steve
by steven
17 Oct 2010
Forum: MultiCharts
Topic: Function for finding the 'N'th highest price in M days
Replies: 5
Views: 1311

Re: Function for finding the 'N'th highest price in M days

Hi TJ,

For example, we have a function named highest(c, n) which will show the highest close of N bars, My question is: have we had another function which will show the second highest close of N bars, like highest2(c,n,2).

Steven
by steven
17 Oct 2010
Forum: MultiCharts
Topic: Function for finding the 'N'th highest price in M days
Replies: 5
Views: 1311

Function for finding the 'N'th highest price in M days

Hi, Is there any function for finding the 'N'th highest price in M days?

Steven
by steven
11 Oct 2010
Forum: MultiCharts
Topic: Function of EL
Replies: 2
Views: 995

Re: Function of EL

another one: Commentary (Reserved Word)
It shows in RED in PL, not the Reserved word color, how to use it.


Steven
by steven
09 Oct 2010
Forum: MultiCharts
Topic: Function of EL
Replies: 2
Views: 995

Function of EL

Dear TSSupport,

I found below functions in EL_FunctionsAndReservedWords_Ref.pdf, but I cannot find them in powerlanguage, Could you help to advise?

GetAccount (Reserved Word)
MarketOrder (Function)

Thanks,
Steven
by steven
06 Oct 2010
Forum: MultiCharts
Topic: question about the exit
Replies: 7
Views: 2215

Re: question about the exit

Dear Anastassia,

If there are 2 entries called "break up1" and "break up2" entered in different time, How can I get the entry name of the one which got a more loss?

Thanks,
Steven
by steven
28 Sep 2010
Forum: MultiCharts
Topic: question about the exit
Replies: 7
Views: 2215

Re: question about the exit

I found the below new feature of MC6, Can this be help? "If pyramiding is enabled and several simulated entries are made before Autotrading is turned on, software now takes them into consideration as separate entries and is able to use "exit from entry" logic in asynchronous Autotrading mode on thos...
by steven
28 Sep 2010
Forum: MultiCharts
Topic: question about the exit
Replies: 7
Views: 2215

Re: question about the exit

Hi Anastassia, Same symbol and the pyramiding was turned on, So I can buy 2 contracts at the different entry price, after a while, I found the first contract had a loss of $200 and the $100 for the second one, So I want to close the first contract firstly and hold the second contract. The question i...
by steven
28 Sep 2010
Forum: MultiCharts
Topic: question about the exit
Replies: 7
Views: 2215

question about the exit

When I have 2 long positions, $100 loss for the first one and $200 loss for the second one, how can I close the second one firstly and hold the first one still?
by steven
15 Sep 2010
Forum: MultiCharts
Topic: Maxpositionprofit issue
Replies: 1
Views: 649

Maxpositionprofit issue

Dear TS, A symbol setting: bigpointvalue = 300 min movement = 0.2 desc: I have a strategy running on Symbol A, I have print the below information after the entry: code:print("MaxpositionprofitX", maxpositionprofit, " ", "EntryPriceX","entryprice"); result:MaxpositionprofitX: 882660.00 EntryPriceX : ...
by steven
14 Sep 2010
Forum: MultiCharts
Topic: How to set commission dynamically in MC
Replies: 2
Views: 775

How to set commission dynamically in MC

Dear TS,

The commission of some symbols is N% of the trading price, Can I set it dynamically instead of the fixed one in strategy properties?

Thanks,
Steven
by steven
25 Aug 2010
Forum: MultiCharts
Topic: commission&slippage in Portfolio Backtester
Replies: 2
Views: 1065

commission&slippage in Portfolio Backtester

Where to set commission and slippage in Portfolio Backester?
by steven
23 Jul 2010
Forum: MultiCharts
Topic: about symbol setting...
Replies: 3
Views: 923

Thanks Dave.
by steven
21 Jul 2010
Forum: MultiCharts
Topic: about symbol setting...
Replies: 3
Views: 923

about symbol setting...

Dear,

Please help to confirm if below statements are correct.

Thakns,
Steven

Symbol setting:
10th of 32nd = 10/32
j of 10th = j/10
j of 32nd = j/32
10th of 64th = 10/64
S of 32nd = s/32
S of 64th = s/64
by steven
06 Jul 2010
Forum: MultiCharts
Topic: Multicharts 6.0 Beta 4 feedback
Replies: 84
Views: 22917

Dear TSsupport, What that below new feature for? can you give a example? Thanks, Steven Point & Figure, Kagi, Renko, Line Break Charts Two chart-plotting algorithms are now available : starting at the beginning of the requested period or starting at the beginning of each session. In the first case, ...
by steven
16 Jun 2010
Forum: MultiCharts
Topic: Can I do the auto trade at line break chart or OX?
Replies: 5
Views: 1361

Re: Can I do the auto trade at line break chart or OX?


you can insert signal into an indicator,
but the indicator cannot have plots.
eg, I have a strategy running on 5mins, if I change it to 3LB line break chart, can this strategy work?
by steven
16 Jun 2010
Forum: MultiCharts
Topic: Can I do the auto trade at line break chart or OX?
Replies: 5
Views: 1361

Can I do the auto trade at line break chart or OX?

Dears,

As the title, Can i insert signal in the line break chart or OX and do the auto-trade?

Thanks,
Stv
by steven
09 Jun 2010
Forum: MultiCharts
Topic: Easylanguage call C#/JAVA
Replies: 4
Views: 2286

Dear Dave,

Thanks for the reply.
Is there any other way to call C# except DLL with EL?

Regards,
Stv
by steven
08 Jun 2010
Forum: MultiCharts
Topic: Easylanguage call C#/JAVA
Replies: 4
Views: 2286

Easylanguage call C#/JAVA

Is there any way to call C#/JAVA in easylanguage?

Thanks

Go to advanced search