NexusFi: Find Your Edge


Home Menu

 





Sending e-mail using ACSIL


Discussion in Sierra Chart

Updated
    1. trending_up 2,167 views
    2. thumb_up 0 thanks given
    3. group 2 followers
    1. forum 3 posts
    2. attach_file 0 attachments




 
Search this Thread
  #1 (permalink)
tomas262
Ostrava, Czech Republic
 
Posts: 97 since May 2013
Thanks Given: 19
Thanks Received: 38

Hello, how do you (if you do) control e-mail alerts in ACSIL? I need to send an e-mail on execution etc ...

Thanks


Reply With Quote

Can you help answer these questions
from other members on NexusFi?
SEC Advisory Committee Backs Tokenized Securities Exempt …
Traders Hideout
MegaETH Proves the Crowd Right: Prediction Markets Calle …
Prediction Markets & Event Contracts
Hormuz Normalization Collapses to 19.5% -- Iran Regime F …
Prediction Markets & Event Contracts
OneChronos Launches First Combinatorial Auction FX Venue …
Currencies
Cboe Files for Near 24x5 Equities Trading -- December 20 …
Traders Hideout
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Sober Journey With S&P
21 thanks
2026 Jlab journal
10 thanks
Lady Vols Primer: Trading Volatility Journal
6 thanks
Algo automated / semi-automated trading anyone?
6 thanks
2026 Fire Horse
5 thanks
  #3 (permalink)
 jesslinn 
Boulder, Colorado
 
Experience: Advanced
Platform: Sierra
Broker: IB/various
Trading: es
Posts: 6 since Nov 2013
Thanks Given: 6
Thanks Received: 8


Global Configuration/General Settings Check send email when alert is triggered and fill in the email.

Use sc.SetAlert() in ASCIL code to trigger the alert.


Reply With Quote
  #4 (permalink)
tomas262
Ostrava, Czech Republic
 
Posts: 97 since May 2013
Thanks Given: 19
Thanks Received: 38

I tried to send execution price via email alert but I get zero values in email for both variables (sc.GraphName and quantity) and dunno why. Can you have a look at the code? Thx

 
Code
// Set default position size
			int quantity = 1;

			// Create new market order object
			s_SCNewOrder NewOrderLong;
			NewOrderLong.OrderType = SCT_MARKET;
			NewOrderLong.OrderQuantity = quantity;

			// Send order and get result
			OrderResult = sc.BuyEntry(NewOrderLong);
			if (OrderResult > 0) {
				
				// Get actual position data
				s_SCPositionData InternalPositionDataOnEntry;
				sc.GetTradePosition(InternalPositionDataOnEntry) ;
				
				// Send alert by e-mail
				SCString alertMessage;
				sc.FormatString(alertMessage, "%s -> %d(at)%f", sc.GraphName, quantity, InternalPositionDataOnEntry.AveragePrice);
				sc.SetAlert(1, alertMessage);
			}


Reply With Quote




Last Updated on February 4, 2014


© 2026 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 - Downloads - Top
no new posts