Dark Theme
Light Theme
Welcome to NexusFi: the best trading community on the planet, with over 200,000 members Sign Up Now for Free
Genuine reviews from real traders, not fake reviews from stealth vendors
Quality education from leading professional traders
We are a friendly, helpful, and positive community
We do not tolerate rude behavior, trolling, or vendors advertising in posts
We are here to help, just let us know what you need
You'll need to
register in order to view the content of the threads and start contributing to our community.
It's free for basic access, or support us by becoming an Elite Member -- discounts are available after registering.
-- Big Mike, Site Administrator
(If you already have an account, login at the top of the page)
Updated April 30, 2012
Top Posters
looks_one
Big Mike
with 11 posts (1 thanks)
looks_two
Laurus12
with 5 posts (3 thanks)
looks_3
greenroomhoo
with 4 posts (1 thanks)
looks_4
guppy
with 4 posts (0 thanks)
Best Posters
looks_one
MultiCharts
with 3 thanks per post
looks_two
cory
with 2 thanks per post
looks_3
Jura
with 2 thanks per post
looks_4
Laurus12
with 0.6 thanks per post
trending_up
18,383 views
thumb_up
20 thanks given
group
21 followers
forum
48 posts
attach_file
1 attachments
January 19th, 2012, 05:22 PM
Tomsk, Russia
Experience: Beginner
Platform: custom
Trading: gold
Posts: 273 since Dec 2010
Thanks Given: 133
Thanks Received: 435
bibulous
from the top of my head:
Heikin-Ashi Range charts
Better Renko like Charts
Volume break down like Investor/RT
cumulatative delta volume indicators like Investor/RT
in general: volume studies like Investor/RT
Market Profile
in the order and position window the _realized_ PnL should be shown as well
TradeStation 9 compatibility
more on the bug side (either in MC or in my setup): if I trade the ESH2 in the DOM using IB and chart @ES# from IQFeed I do not see my orders on the chart
possibility to group indicators and studies (hierarchical). a flat list is confusing..
and
Profile indicator like Investor/RT
January 20th, 2012, 08:18 AM
Posts: 775 since Apr 2010
Thanks Given: 2,352
Thanks Received: 690
Big Mike
MultiCharts is C# behind the scenes, their PowerLanguage EasyLanguage is an interpreter to C#. If you look at FXCM Strategy Trader, it is C# for scripting --- and while FXCM owns that trading platform, it is essentially a MultiCharts fork/OEM.
Hm I thought MultiCharts was primarily C++ based. For example, when making coding errors, you'll get STD::Exception (from the C++ default std library) errors and when compiling a study in the editor, the PowerLanguage Editor calls 'g++.exe' (in C:\Program Files\MultiCharts\make\MinGW\bin), which is an open source C++ (among others) compiler. But MC probably also uses C# and .NET but I'm doubtful if it's primarily C# based (not that it would make any actual difference. , so I'm just rambling here)
NW27
10. A timer that is independent of incoming ticks. Ie EL code that could be fired every 100ms regardless of whether ticks had come in. I was trying to do some code that exited 15 seconds prior to a 5min bar close on the AUS/USD pair. Ie place a Market exit order before the close of the bar. Sometimes it was this bar sometimes the next 5min bar.
You would thing that this pair had enough turnover to do this but no.
Hm, if I understand you completely, why won't that work with ReCalcLastBarAfter(x)?
I haven't tested this code on real-time data, but I'd try to solve that problem as following:
Code
Variables:
barTimeNextBar(0),
exitTimePosition(0);
[IntraBarOrderGeneration = TRUE]
if (MarketPosition(0) <> 0) then begin
// Calculate the closing time of the next bar (i.e. add 5 minutes to current bar)
if (BarStatus(1) = 2) then begin
barTimeNextBar = (ELTimeToDateTime_s(Time_s) + ElTimeToDateTime(5));
// Calculate the time that the position needs to be closed, which is
// one minute before the closing time of the next bar
exitTimePosition = barTimeNextBar - ELTimeToDateTime(1);
end;
// Exit position
if (ELTimeToDateTime_s(CurrentTime_s) >= exitTimePosition)) then begin
if (MarketPosition(0) = 1) then
Sell ("Time XL") all contracts next bar at market; //i.e. next tick since IOG = True
if (MarketPosition(0) = -1) then
BuyToCover ("Time XS") all contracts next bar at market;
end;
// Recalc after 0.1 seconds
RecalcLastBarAfter(0.1);
end;
January 20th, 2012, 08:41 AM
Cordoba. Spain
Experience: Beginner
Platform: Ninjatrader, Strategy trader, metatrader
Broker: Mirus, FXCM
Trading: 6E, TF, CL, XAGUSD, ES, Gold
Posts: 35 since Jun 2011
Thanks Given: 47
Thanks Received: 19
When using a multi charts / multiple time frame workspace setup it would have been great to have the option to choose in Format setup properties to apply drawing tools to all linked charts with same instrument in a workspace. This would reduce workload considerabely.
January 20th, 2012, 05:38 PM
Manta, Ecuador
Site Administrator Developer Swing Trader
Experience: Advanced
Platform: Custom solution
Broker: IBKR
Trading: Stocks & Futures
Frequency: Every few days
Duration: Weeks
Posts: 50,669 since Jun 2009
Thanks Given: 33,669
Thanks Received: 102,557
Jura
Hm I thought MultiCharts was primarily C++ based. For example, when making coding errors, you'll get STD::Exception (from the C++ default std library) errors and when compiling a study in the editor, the PowerLanguage Editor calls 'g++.exe' (in C:\Program Files\MultiCharts\make\MinGW\bin), which is an open source C++ (among others) compiler. But MC probably also uses C# and .NET but I'm doubtful if it's primarily C# based (not that it would make any actual difference.
, so I'm just rambling here)
You are probably right and me wrong. I didn't look as close as you I am not sure if Stan or Dennis would confirm one way or another.
Mike
January 28th, 2012, 03:08 AM
Singapore
Experience: Beginner
Platform: Multicharts, R
Trading: EUR / USD
Posts: 185 since Feb 2010
Thanks Given: 106
Thanks Received: 99
In addition to all the excellent points above, I would like:
the ability to collapse/expand sections of code similar to Ninja. This would be especially useful for writing large strategies or indicators.
Shading between two lines (e.g. between two Moving Averages)
January 28th, 2012, 12:41 PM
Portland, OR
Experience: Intermediate
Platform: Sierra Chart
Trading: ES
Posts: 269 since Jan 2011
Thanks Given: 327
Thanks Received: 180
I would like to see the following:
- Ability to replay all the charts in platform (globally as needed or worst case - for a single instrument). At present this is only supported for minute based charts. Would like to see this for tick charts as well.
- Ability to stay in the queue for second target order without cancelling and re-enter ( there is no work around at present)
PM request - MultiCharts Project Management - Issue MC-454 - Automated Strategy always submits multiple orders as OCO orders - compared to DOM
January 30th, 2012, 05:49 PM
annapolis USA
Experience: Intermediate
Platform: Ninja, MC, Sierra, Amibroker
Broker: PFG (too bad), IB, Fidelity, AMP
Trading: ES, NQ, Equities, Forex, Etc.
Posts: 277 since Jun 2011
Thanks Given: 107
Thanks Received: 235
+1,000,000 from me on this one
trendfly
When using a multi charts / multiple time frame workspace setup it would have been great to have the option to choose in Format setup properties to apply drawing tools to all linked charts with same instrument in a workspace. This would reduce workload considerabely.
January 30th, 2012, 05:51 PM
annapolis USA
Experience: Intermediate
Platform: Ninja, MC, Sierra, Amibroker
Broker: PFG (too bad), IB, Fidelity, AMP
Trading: ES, NQ, Equities, Forex, Etc.
Posts: 277 since Jun 2011
Thanks Given: 107
Thanks Received: 235
1. ability to drag the charts
2. Renkos with wicks
3. CUSTOMIZABLE keyboard shortcuts.
4. delta that works correctly
5. linking drawings would be HUGE as well.
January 30th, 2012, 05:54 PM
Los Angeles, CA
Experience: Advanced
Platform: Tradestation
Broker: Tradestation
Trading: ES,HG,GC,YM,Nq,RB,NG
Posts: 52 since Aug 2011
Thanks Given: 11
Thanks Received: 8
When is the 64Bit going to be released?
greenroomhoo
1. ability to drag the charts
2. Renkos with wicks
3. CUSTOMIZABLE keyboard shortcuts.
4. delta that works correctly
5. linking drawings would be HUGE as well.
As i ahve noted in another forum i am testing the 64 bit and i must say the improvement in speed/memory handling is a huge step forward. I think everyone here will be very happy with it.
I really notice the difference (not only in backtesting) but in how fast my daily chart load as i cycle through instruments....night and day faster.
January 30th, 2012, 06:19 PM
annapolis USA
Experience: Intermediate
Platform: Ninja, MC, Sierra, Amibroker
Broker: PFG (too bad), IB, Fidelity, AMP
Trading: ES, NQ, Equities, Forex, Etc.
Posts: 277 since Jun 2011
Thanks Given: 107
Thanks Received: 235
I dont know but I begged to be in the beta test and that is how i have it. ITS AWESOME.
guppy
When is the 64Bit going to be released?
Last Updated on April 30, 2012