Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Simple Indicator that alerts with every new bar
Collapse
X
-
No,it doesn`t.Originally posted by sledge View Post
Is there a "new bar" indicator with email alert?
Comment
-
There is no indicator that I know of, but you can easily write it. You need just the single line in OnBarUpdate(), from my very first response in this very thread.Originally posted by cachevery View PostNo,it doesn`t.
Is there a "new bar" indicator with email alert?
Code:if (FirstTickOfBar) SendMail("[email protected]", "[email protected]", "New Bar Alert", "New bar just opened");
Comment
-
Hi Koganam,and thank you for your assistance.i found one in this thread:Originally posted by koganam View PostThere is no indicator that I know of, but you can easily write it. You need just the single line in OnBarUpdate(), from my very first response in this very thread.
Code:if (FirstTickOfBar) SendMail("[email protected]", "[email protected]", "New Bar Alert", "New bar just opened");
Comment
-
I hate to bump a two month old thread but I wanted to thank you for this simple line of code. It works beautifully when you attach it to one chart. However, I like to watch 6 pairs at once, and when I attach the indicator to all 6 charts, when I get the email alert, it doesn't specify from which chart the alert originated from.
Is there a way to modify the line of code to make the alert pair specific?
Originally posted by koganam View PostThere is no indicator that I know of, but you can easily write it. You need just the single line in OnBarUpdate(), from my very first response in this very thread.
Code:if (FirstTickOfBar) SendMail("[email protected]", "[email protected]", "New Bar Alert", "New bar just opened");
Comment
-
You just have to include the instrument in the text of your message. The instrument is given by Instrument.Fullname.Originally posted by johncolavito View PostI hate to bump a two month old thread but I wanted to thank you for this simple line of code. It works beautifully when you attach it to one chart. However, I like to watch 6 pairs at once, and when I attach the indicator to all 6 charts, when I get the email alert, it doesn't specify from which chart the alert originated from.
Is there a way to modify the line of code to make the alert pair specific?
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
599 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
345 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
103 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
558 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
558 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment