NexusFi: Find Your Edge


Home Menu

 





StockSharp


Discussion in Platforms and Indicators

Updated
      Top Posters
    1. looks_one Jasonnator with 34 posts (23 thanks)
    2. looks_two stocksharp with 16 posts (7 thanks)
    3. looks_3 Big Mike with 13 posts (1 thanks)
    4. looks_4 mattz with 5 posts (3 thanks)
      Best Posters
    1. looks_one IQFeed James with 2 thanks per post
    2. looks_two Jasonnator with 0.7 thanks per post
    3. looks_3 mattz with 0.6 thanks per post
    4. looks_4 stocksharp with 0.4 thanks per post
    1. trending_up 33,526 views
    2. thumb_up 38 thanks given
    3. group 19 followers
    1. forum 82 posts
    2. attach_file 1 attachments




 
 

StockSharp

 
 
Jasonnator's Avatar
 Jasonnator 
Denver, Colorado United States
 
Experience: Intermediate
Platform: NT8 + Custom
Broker: NT Brokerage, Kinetick, IQFeed, Interactive Brokers
Trading: ES
Posts: 159 since Dec 2014
Thanks Given: 40
Thanks Received: 166

StockSharp has taken a back seat for the time being while I complete my switch from NT to MultiCharts (lots of indicators and strategies to recode). S# is still my ultimate goal for my primary platform.

Started this thread

Can you help answer these questions
from other members on NexusFi?
Deepmoney LLM
Elite Quantitative GenAI/LLM
NexusFi Journal Challenge - April 2024
Feedback and Announcements
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
Futures True Range Report
The Elite Circle
New Micros: Ultra 10-Year & Ultra T-Bond -- Live Now
Treasury Notes and Bonds
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Get funded firms 2023/2024 - Any recommendations or word …
59 thanks
Funded Trader platforms
36 thanks
NexusFi site changelog and issues/problem reporting
25 thanks
GFIs1 1 DAX trade per day journal
19 thanks
The Program
18 thanks
 
 
Jasonnator's Avatar
 Jasonnator 
Denver, Colorado United States
 
Experience: Intermediate
Platform: NT8 + Custom
Broker: NT Brokerage, Kinetick, IQFeed, Interactive Brokers
Trading: ES
Posts: 159 since Dec 2014
Thanks Given: 40
Thanks Received: 166

Ok, after spending hours digging through code, I have learned that the WPF learning curve is STEEP! In trying to figure out how some components work, I get lost when I'm 7+ classes deep.

Anyone know of a breadcrumb style debug viewer for XAML/WPF?

Started this thread
 
 
stocksharp's Avatar
 stocksharp 
Moscow, RU
 
Experience: Advanced
Platform: StockSharp
Trading: ES
Posts: 38 since Mar 2014
Thanks Given: 3
Thanks Received: 13



Jasonnator View Post
Ok, after spending hours digging through code, I have learned that the WPF learning curve is STEEP! In trying to figure out how some components work, I get lost when I'm 7+ classes deep.

Anyone know of a breadcrumb style debug viewer for XAML/WPF?

I think it is a wrong way. Just use S#.API as a user. When you completely understand all common use cases (send transaction and receive market data) you can try to change something in core. For now change XAML components (for what, btw?) is wasting time. Most of all trading robot - one window with several buttons. Pretty easy for GUI develop.

Follow me on Twitter
 
 
Jasonnator's Avatar
 Jasonnator 
Denver, Colorado United States
 
Experience: Intermediate
Platform: NT8 + Custom
Broker: NT Brokerage, Kinetick, IQFeed, Interactive Brokers
Trading: ES
Posts: 159 since Dec 2014
Thanks Given: 40
Thanks Received: 166


stocksharp View Post
I think it is a wrong way. Just use S#.API as a user. When you completely understand all common use cases (send transaction and receive market data) you can try to change something in core. For now change XAML components (for what, btw?) is wasting time. Most of all trading robot - one window with several buttons. Pretty easy for GUI develop.

I am actually in the process of just rolling my own instead of trying to mold hydra or studio into what I want. A responsive and robust version of studio would be great but it's so complex that I think it will be easier and faster to make my own from the API.

I will continue to post here with relevant S# information.

Jason

Started this thread
Thanked by:
 
 
Jasonnator's Avatar
 Jasonnator 
Denver, Colorado United States
 
Experience: Intermediate
Platform: NT8 + Custom
Broker: NT Brokerage, Kinetick, IQFeed, Interactive Brokers
Trading: ES
Posts: 159 since Dec 2014
Thanks Given: 40
Thanks Received: 166

Still working on getting connectors working but here is a test on a real time charting built using SciChart with a random walk generator for data. I tested up to 1,000,000 bars and it chugged right through with virtually no slow down or lag. This is a 5,000 bar test


Started this thread
Thanked by:
 
 xandman 
Chicago IL
 
Experience: Intermediate
Platform: NT CQG TWS
Trading: Futures and FOPs
Posts: 59 since Mar 2014
Thanks Given: 7
Thanks Received: 15


stocksharp View Post
I think it is a wrong way. Just use S#.API as a user. When you completely understand all common use cases (send transaction and receive market data) you can try to change something in core. For now change XAML components (for what, btw?) is wasting time. Most of all trading robot - one window with several buttons. Pretty easy for GUI develop.


Where is the documentation in english?

Thanked by:
 
 
Jasonnator's Avatar
 Jasonnator 
Denver, Colorado United States
 
Experience: Intermediate
Platform: NT8 + Custom
Broker: NT Brokerage, Kinetick, IQFeed, Interactive Brokers
Trading: ES
Posts: 159 since Dec 2014
Thanks Given: 40
Thanks Received: 166


xandman View Post
Where is the documentation in english?

There isn't any that I can find. I use my browser to translate (Google Chrome). Within Visual Studio, I use this plugin mapped to a keyboard shortcut.

Started this thread
 
 
stocksharp's Avatar
 stocksharp 
Moscow, RU
 
Experience: Advanced
Platform: StockSharp
Trading: ES
Posts: 38 since Mar 2014
Thanks Given: 3
Thanks Received: 13


xandman View Post
Where is the documentation in english?

Not yet. Be honestly doc is not fully written even for russian For now as you can see the commits https://github.com/StockSharp/StockSharp/commits/master/Documentation we are working hard on that but it is really huge work.

Runtime is already localized and all errors/warning/messages are on english now. But comments (in tooltips) still on russian only.

To use S# you should to good knowledge of C#. Trust be - it is at the first. Many guys that use S# now tell me that they almost never use doc because API structure is well formed and logically. Just as example. 2 month ago I was working with chinese trading gateway. There was almost on hieroglyphs. Nothing was helped me (even google translate). Thanks God there was good developed library with a samples. As a programmer I will understand logic very quickly, without any doc.

C# is also has a docs and books. But it so intuitive you do not need any documentation.

Follow me on Twitter
Thanked by:
 
 
Jasonnator's Avatar
 Jasonnator 
Denver, Colorado United States
 
Experience: Intermediate
Platform: NT8 + Custom
Broker: NT Brokerage, Kinetick, IQFeed, Interactive Brokers
Trading: ES
Posts: 159 since Dec 2014
Thanks Given: 40
Thanks Received: 166

I have reached out to several futures.io (formerly BMT)'ers and a few have expressed interest in contributing to this project (a big thanks to those people). My goal is to make an application which a multitude of trading styles could take advantage of while remaining open source. Just with the initial small group, there is already a wide array of feature interests. My thinking is that the more people contribute and/or extend this platform to what's important to them, the more everyone benefits and the more feature-rich it becomes. If anyone else is interested in contributing, please PM me. The only caveat is that since this is very much still in development stage, you'll need to be somewhat proficient and comfortable in the dev environment. I'm no salesman so that's my best pitch....sales tie is coming off and pocket protector going back on

Started this thread
Thanked by:
 
 
Jasonnator's Avatar
 Jasonnator 
Denver, Colorado United States
 
Experience: Intermediate
Platform: NT8 + Custom
Broker: NT Brokerage, Kinetick, IQFeed, Interactive Brokers
Trading: ES
Posts: 159 since Dec 2014
Thanks Given: 40
Thanks Received: 166


I've been having trouble getting the connectors to work with anything other than simple example programs. I managed to recursively get all of the connector assemblies and instantiate them programatically. This will allow new connectors to be created, compiled, then just dropped in a folder with no changes to the program's code. The new "Connector" tab is not the final UI implementation but it'll due for now.

Real time data should be working soon

@mattz I wanted to say thanks for helping with multiple connector test credentials. That allowed me to test more than just IQFeed to ensure as much compatibility as possible from the beginning.


Started this thread

 



Last Updated on January 16, 2024


© 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