+1 888 340 6572

Alert: Difference between revisions

From MultiCharts
No edit summary
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
Triggers an alert window where the necessary text can be created. The text can be dynamic, static or absent.   
Triggers an alert window where the necessary text can be created. The text can be dynamic, static or absent.   


==== Usage ====
== Usage ==
<syntaxhighlight>
<syntaxhighlight>
Alert
Alert
</syntaxhighlight>
</syntaxhighlight>
   
   
==== Notes ====
== Notes ==
* If the text isn't set in the alert then Source, Symbol, Resolution, Price is displayed.
* The Alert keyword works in real-time only.
* Detailed information of alerts' settings is available in Formatting Studies > Alerts.


If the text isn't set in the alert then Source, Symbol, Resolution, Price is displayed
== Example ==
 
Alerts are shown on the last bar only
 
Detailed information of alerts' settings is available in Formatting Studies > Alerts
==== Example ====
This statement will call an alert without text message:
This statement will call an alert without text message:


<syntaxhighlight>
<syntaxhighlight>
Alert;
Alert;
TEST
absolute
nil
abs
ansistring
'ansistring'
(ansistring + ansistring, ansistring;)
"ansistring"
Text_new(D,T,C,Text("Bar Date/Time is ",Date:0:0,"/",Time:0:0));
</syntaxhighlight>
</syntaxhighlight>


Line 43: Line 28:
<syntaxhighlight>
<syntaxhighlight>
If Close > Close[1] Then
If Close > Close[1] Then
Alert(Text("Price turning up"))
  Alert(Text("Price turning up"))
</syntaxhighlight>
</syntaxhighlight>


[[Category:Alerts]]
[[Category:Alerts]]

Latest revision as of 12:09, 18 March 2021

Triggers an alert window where the necessary text can be created. The text can be dynamic, static or absent.

Usage

Alert

Notes

  • If the text isn't set in the alert then Source, Symbol, Resolution, Price is displayed.
  • The Alert keyword works in real-time only.
  • Detailed information of alerts' settings is available in Formatting Studies > Alerts.

Example

This statement will call an alert without text message:

Alert;

This statement creates a dynamic alert text and displays the number of the weekday:

Alert(Text("Day of week is ", DayOfWeek(Date)));

This statement will show static text:

If Close > Close[1] Then
   Alert(Text("Price turning up"))