Search found 20 matches

by oliveagle
16 Sep 2011
Forum: MultiCharts
Topic: Can I get the ticket id ?
Replies: 3
Views: 1535

Re: Can I get the ticket id ?

OK. about TicketID, you can think it as a unique identity for each position you have. I think this should be a widely accepted method to track the trading activities. I believe every broker will provide a table looks like this: Position Table At Broker Side ( or pos_at_broker ) ticketID Acount Symbo...
by oliveagle
15 Sep 2011
Forum: MultiCharts
Topic: Can I get the ticket id ?
Replies: 3
Views: 1535

Can I get the ticket id ?

Question: Can I get ticket id for each transaction in MC ? some thing like TicketID Account Symbol Amount Side EntryPrice P/L Time 41150116 0119001 GBPUSD 10k B 1.58140 15.0 9/15/2011 14:40 Or can someone teach me how to monitor the strategy positions in alternative ways? Backgroud: It seems that MC...
by oliveagle
12 Sep 2011
Forum: MultiCharts
Topic: [bug]Stop Sending out too many messages at the same time
Replies: 4
Views: 2250

Re: [bug]Stop Sending out too many messages at the same time

Interesting, I even don't know they have this feature... x.x
hope they find out the problem and come up with an good solution in next release.
by oliveagle
09 Sep 2011
Forum: MultiCharts
Topic: [bug]Stop Sending out too many messages at the same time
Replies: 4
Views: 2250

[bug]Stop Sending out too many messages at the same time

After working around this problem with MC support some time, I find out a solution. it is still the old one: variables: intrabarpersist aBar(0); // intrabarpersist is the key if aBar <> currentbar then begin aBar = currentbar; // all calculation and signals are here end; maybe [IntrabarOrderGenerati...
by oliveagle
09 Sep 2011
Forum: MultiCharts
Topic: FOREX setup of Multicharts, eSignal, FXCM broker
Replies: 16
Views: 4841

Re: FOREX setup of Multicharts, eSignal, FXCM broker

I met a lot of "Rejected" too.
still working on it...
by oliveagle
07 Sep 2011
Forum: MultiCharts
Topic: How can I make sure some code only calculate once each bar?
Replies: 2
Views: 784

Re: How can I make sure some code only calculate once each b

e………… find out the solution..
IntraBarPersist abar(0);

I don't know what to say about this ……
by oliveagle
07 Sep 2011
Forum: MultiCharts
Topic: How can I make sure some code only calculate once each bar?
Replies: 2
Views: 784

How can I make sure some code only calculate once each bar?

I thought it was simple...but I'm wrong....It drives me crazy... take a look at this code. variables: abar(0); value1 = 0; if abar<> currentbar then begin // why every time abar changes back to the previous value? print("1 ", abar,currentbar, value1); abar = currentbar ; value1 = 12; print("2 ",abar...
by oliveagle
22 Aug 2011
Forum: MultiCharts
Topic: way AtCenterServer eats a lot of RAM?
Replies: 1
Views: 721

way AtCenterServer eats a lot of RAM?

MC 7 on my server uses 1.3Gb RAM? why ?
I just opened 6 hourly charts only 5 days back. ????
by oliveagle
15 Aug 2011
Forum: MultiCharts
Topic: some detail questions about WalkForwardTest
Replies: 6
Views: 1633

Re: some detail questions about WalkForwardTest

2.All open positions at the end of test session will not included in Performance Report. This introduced another question: how can I let MC closes those open positions at the end of each test session automatically? I don't like a large amount of floating either profit or loss out there if I have ma...
by oliveagle
15 Aug 2011
Forum: MultiCharts
Topic: How to make MC doesn't reverse my trade if needed?
Replies: 6
Views: 1520

Re: How to make MC doesn't reverse my trade if needed?

As a mutual beneficial community, you should share your findings. Yes. The problem is not the code. It's the rule of enter and exit. The rule I use will always reverse itself in nature. They are something looking like this. longCondition = MA1 crosses above MA2; shortCondition = MA2 crosses above M...
by oliveagle
15 Aug 2011
Forum: MultiCharts
Topic: some detail questions about WalkForwardTest
Replies: 6
Views: 1633

Re: some detail questions about WalkForwardTest

two questions: 1. how indicator values and trading algorithms are calculated in OOS. plz see my attachment for detail. 2. How trade is managed in OOS. If I have a open position in the first OOS session, MC will let it open or close this position at the end of the OOS session. If MC will keep the op...
by oliveagle
13 Aug 2011
Forum: MultiCharts
Topic: some detail questions about WalkForwardTest
Replies: 6
Views: 1633

Re: some detail questions about WalkForwardTest

OOS = Out of Sample IS = In Sample check this out for detail : http://www.automated-trading-system.com/walk-forward-testing/ two questions: 1. how indicator values and trading algorithms are calculated in OOS. plz see my attachment for detail. 2. How trade is managed in OOS. If I have a open positio...
by oliveagle
12 Aug 2011
Forum: MultiCharts
Topic: some detail questions about WalkForwardTest
Replies: 6
Views: 1633

Re: some detail questions about WalkForwardTest

Any one knows about it? thx a million
by oliveagle
11 Aug 2011
Forum: MultiCharts
Topic: some detail questions about WalkForwardTest
Replies: 6
Views: 1633

some detail questions about WalkForwardTest

two questions: 1. how indicator values and trading algorithms are calculated in OOS. plz see my attachment for detail. 2. How trade is managed in OOS. If I have a open position in the first OOS session, MC will let it open or close this position at the end of the OOS session. If MC will keep the ope...
by oliveagle
05 Aug 2011
Forum: MultiCharts
Topic: How to make MC doesn't reverse my trade if needed?
Replies: 6
Views: 1520

Re: How to make MC doesn't reverse my trade if needed?

The problem is how to liquidate my positions without getting reversed by MC automatically?
your liquidation code should be able to do that without error.

Can you draw a flow chart to illustrate your logic?
I find out the problem myself. thx any way. pal
by oliveagle
04 Aug 2011
Forum: MultiCharts
Topic: How to make MC doesn't reverse my trade if needed?
Replies: 6
Views: 1520

Re: How to make MC doesn't reverse my trade if needed?

it is easier to go the other way...

Code: Select all

if time < lasthour then
begin

// put your trading logic here

end
else

// liquidate your positions

The problem is how to liquidate my positions without getting reversed by MC automatically?
by oliveagle
04 Aug 2011
Forum: MultiCharts
Topic: How to make MC doesn't reverse my trade if needed?
Replies: 6
Views: 1520

How to make MC doesn't reverse my trade if needed?

1st Question : How to stop MC reversing my position? 2nd Question: How can I stop trading at lastHour of friday? actually they are the same question I think. Here is the thing. MC will automatically reverse my entry signals. For example the simplest trading strategy may looks like this: -----------...

Go to advanced search