NexusFi: Find Your Edge


Home Menu

 





MultiCharts, MultiCharts, MultiCharts...


Discussion in MultiCharts

Updated
      Top Posters
    1. looks_one Big Mike with 195 posts (166 thanks)
    2. looks_two TonyB with 56 posts (20 thanks)
    3. looks_3 MultiCharts with 46 posts (41 thanks)
    4. looks_4 Snoop with 27 posts (14 thanks)
      Best Posters
    1. looks_one FulcrumTrader with 3 thanks per post
    2. looks_two Big Mike with 0.9 thanks per post
    3. looks_3 MultiCharts with 0.9 thanks per post
    4. looks_4 TonyB with 0.4 thanks per post
    1. trending_up 340,698 views
    2. thumb_up 510 thanks given
    3. group 93 followers
    1. forum 827 posts
    2. attach_file 71 attachments




Closed Thread
 
Search this Thread

MultiCharts, MultiCharts, MultiCharts...

  #131 (permalink)
 
Big Mike's Avatar
 Big Mike 
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,446 since Jun 2009
Thanks Given: 33,217
Thanks Received: 101,608

On a side note, I've posted two new threads tonight with some EasyLanguage code I've been working on:

Daily Profit Targets and Loss Limits:


My version of SuperTrend (includes function and indicator):


Enjoy.

Mike

We're here to help: just ask the community or contact our Help Desk

Quick Links: Change your Username or Register as a Vendor
Searching for trading reviews? Review this list
Lifetime Elite Membership: Sign-up for only $149 USD
Exclusive money saving offers from our Site Sponsors: Browse Offers
Report problems with the site: Using the NexusFi changelog thread
Follow me on Twitter Visit my NexusFi Trade Journal Started this thread
Thanked by:

Can you help answer these questions
from other members on NexusFi?
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
Better Renko Gaps
The Elite Circle
MC PL editor upgrade
MultiCharts
How to apply profiles
Traders Hideout
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Spoo-nalysis ES e-mini futures S&P 500
34 thanks
Just another trading journal: PA, Wyckoff & Trends
30 thanks
Tao te Trade: way of the WLD
24 thanks
Bigger Wins or Fewer Losses?
23 thanks
GFIs1 1 DAX trade per day journal
21 thanks
  #132 (permalink)
 ehlaban 
Netherlands
 
Experience: Advanced
Platform: Ensign, Multicharts
Trading: SP500
Posts: 91 since Nov 2009
Thanks Given: 66
Thanks Received: 57

Could somebody point me to some good description/tutorial/explanation on how to call an external DLL from Multicharts or Easylanguage if that's no different.

Ernesto

  #133 (permalink)
 
Big Mike's Avatar
 Big Mike 
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,446 since Jun 2009
Thanks Given: 33,217
Thanks Received: 101,608


Regarding the planned MC 7.0 release with discretionary trading (DOM/chart trader, sim engine)...

What features do you think are required? Let's say you are like me and you are using MultiCharts for charting, backtesting, development but using NinjaTrader for discretionary trading (for the DOM). What features would MC 7 need to consist of in order for you to stop using Ninja completely?

I'm giving this some thought and will be sharing my insights and recommendations, as well as yours, with the MultiCharts team next week in hopes they will agree and give us what we want

Let me know.

Mike

We're here to help: just ask the community or contact our Help Desk

Quick Links: Change your Username or Register as a Vendor
Searching for trading reviews? Review this list
Lifetime Elite Membership: Sign-up for only $149 USD
Exclusive money saving offers from our Site Sponsors: Browse Offers
Report problems with the site: Using the NexusFi changelog thread
Follow me on Twitter Visit my NexusFi Trade Journal Started this thread
  #134 (permalink)
 
Big Mike's Avatar
 Big Mike 
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,446 since Jun 2009
Thanks Given: 33,217
Thanks Received: 101,608


ehlaban View Post
Could somebody point me to some good description/tutorial/explanation on how to call an external DLL from Multicharts or Easylanguage if that's no different.

Ernesto

This example is for Visual Studio C++

Courtesy user wegi from MultiCharts forum:
TS SUPPORT :: View topic - Request : dll example

VS: New - Project - Win32 DLL

 
Code
                            
extern "C" LPCSTR __declspecdllexport __stdcall intToAsc(int v

 
   try{ 
 
      
char buffer [255]; 
      
sprintf (buffer,"%c"v); 
 
      return 
buffer
 
   } 
   catch(...){ 
      
LPCSTR sValue "ERR EXCEPTION"
        return 
sValue
   } 
 

Then create a DEF file to declare the functions exported:

 
Code
                            
EXPORTS    intToAsc 

Then use this EasyLanguage code:

 
Code
                            

vars
tab(""); 
 
DefineDLLFunc"dlltest.dll",  lpstr"intToAsc"int
 
if 
tab "" then tab intToAsc(9); 
Mike

We're here to help: just ask the community or contact our Help Desk

Quick Links: Change your Username or Register as a Vendor
Searching for trading reviews? Review this list
Lifetime Elite Membership: Sign-up for only $149 USD
Exclusive money saving offers from our Site Sponsors: Browse Offers
Report problems with the site: Using the NexusFi changelog thread
Follow me on Twitter Visit my NexusFi Trade Journal Started this thread
Thanked by:
  #135 (permalink)
 
aslan's Avatar
 aslan 
Madison, WI
 
Experience: Advanced
Platform: ALT
Trading: ES
Posts: 625 since Jan 2010
Thanks Given: 356
Thanks Received: 1,127


ehlaban View Post
Could somebody point me to some good description/tutorial/explanation on how to call an external DLL from Multicharts or Easylanguage if that's no different.

Ernesto

Not sure there is a "good" one, but you can find more examples in the Tradestation forums/wiki. Everything is the same as TS, except where you place the DLL (in the MC dir instead of TS dir). You can also put a path in the DLL ref in the EasyLanguage instead of putting the DLL in the program dir, making it a little easier to know what you have loaded on a system. The TS DLLs work fine (i.e. global vars, ADE etc.).

  #136 (permalink)
 
Big Mike's Avatar
 Big Mike 
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,446 since Jun 2009
Thanks Given: 33,217
Thanks Received: 101,608

I am just starting to look at and learn about ADE (All Data Everywhere). Attached is a document on the ELCollections library, which ADE is built on. Hope it is useful to some

Mike

We're here to help: just ask the community or contact our Help Desk

Quick Links: Change your Username or Register as a Vendor
Searching for trading reviews? Review this list
Lifetime Elite Membership: Sign-up for only $149 USD
Exclusive money saving offers from our Site Sponsors: Browse Offers
Report problems with the site: Using the NexusFi changelog thread
Attached Thumbnails
MultiCharts, MultiCharts, MultiCharts...-elcollections.pdf  
Follow me on Twitter Visit my NexusFi Trade Journal Started this thread
Thanked by:
  #137 (permalink)
 
aslan's Avatar
 aslan 
Madison, WI
 
Experience: Advanced
Platform: ALT
Trading: ES
Posts: 625 since Jan 2010
Thanks Given: 356
Thanks Received: 1,127


Big Mike View Post
Regarding the planned MC 7.0 release with discretionary trading (DOM/chart trader, sim engine)...

What features do you think are required? Let's say you are like me and you are using MultiCharts for charting, backtesting, development but using NinjaTrader for discretionary trading (for the DOM). What features would MC 7 need to consist of in order for you to stop using Ninja completely?

Interestingly, NT has chosen to make a grand total of zero changes to the DOM in NT7. Thats because they generally do the DOM pretty well. The following are things I would be looking for:

*price static, but manually scrollable
* ability to have cumulative level2
* single click order entry / modification
* ability to see PnL as another column (see tradestation)
* ability to go flat with single click
* ability to cancel all orders with single click
* display avg price of position in ladder
* visually show that you are in sim vs live

I have always thought that combining the DOM within the chart would be cool. TradeVec actually does this, and it is kind of the ultimate chart trader. TradeVec is still just getting started, but this feature is worth taking a look at IMO.

The NT ATMs would also be needed in some form. However they are implemented, an important feature is being able to manually change them on the fly within the DOM, and not have the ATM undo the manual changes.

Chart trader is not mandatory for entry, but is really helpful in terms of managing a trade.

There is probably more, but thats it for now.

Thanked by:
  #138 (permalink)
 
Big Mike's Avatar
 Big Mike 
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,446 since Jun 2009
Thanks Given: 33,217
Thanks Received: 101,608

Thanks aslan. Any examples you can provide of TradeVec? I looked around on their website... are you sure they are still in business? Looks like a possible failed startup to me? Or they've just not updated their website in a year and shutdown the community/forum ?

Mike

We're here to help: just ask the community or contact our Help Desk

Quick Links: Change your Username or Register as a Vendor
Searching for trading reviews? Review this list
Lifetime Elite Membership: Sign-up for only $149 USD
Exclusive money saving offers from our Site Sponsors: Browse Offers
Report problems with the site: Using the NexusFi changelog thread
Follow me on Twitter Visit my NexusFi Trade Journal Started this thread
  #139 (permalink)
 zikonc 
san ramon
 
Experience: Beginner
Platform: ninja
Broker: zen
Trading: es, 6e
Posts: 136 since Oct 2009
Thanks Given: 98
Thanks Received: 76

Hi Mike....... there is a webinar on fulcrumtrader's website

TradeVec/Vcap Futures Recent TradeVec Platform Informational Webinar | FulcrumTrader

....and also some discussion about the platform on Elite Trader

Forums - Anyone seen Tradevec?

......I am not sure I know what they are ultimately looking to spin, it sounds like an alternative to NT and MC.........

Thanked by:
  #140 (permalink)
 
neriusb's Avatar
 neriusb 
Kaunas, Lithuania
 
Experience: Intermediate
Platform: MultiCharts
Broker: IB/IQFeed
Trading: Stocks, Futures
Posts: 15 since Dec 2009
Thanks Given: 16
Thanks Received: 13



Big Mike View Post
Regarding the planned MC 7.0 release with discretionary trading (DOM/chart trader, sim engine)...

What features do you think are required? Let's say you are like me and you are using MultiCharts for charting, backtesting, development but using NinjaTrader for discretionary trading (for the DOM). What features would MC 7 need to consist of in order for you to stop using Ninja completely?

I'm giving this some thought and will be sharing my insights and recommendations, as well as yours, with the MultiCharts team next week in hopes they will agree and give us what we want

Let me know.

Mike

Hi All,

Missing Multicharts features for me:
1/ Chart trading. They could take NT chart trading portion as example. At least possibility to place/manage orders directly in the chart and using some ATM could be very useful.
2/ Not so important, but still very useful: global simulation mode like in NT.
3/ Cross-grade price. If they wants to attract users of NT (or other similar price/functionality software) to upgrade to Multicharts, some kind of upgrade price could be useful. Also, because they are using swreg for order processing, for EU customers to purchase Multicarts is USD1497 + VAT (lets say about 20%, depends on country) is added so about USD 1800. You can purchase NT single broker directly by using CC for USD 995 (no VAT added).
Almost twice price and no DOM, Chart trading, smaller community, but excellent speed and stability ;-) .

Best regards
NeriusB

Thanked by:

Closed Thread



Last Updated on July 24, 2011


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts