Difference between revisions of "DoubleQuote"

From MultiCharts
Jump to navigation Jump to search
m (Reverted edits by 176.8.90.7 (talk) to last revision by JoshM)
 
Line 1: Line 1:
 
Displays the double-quote (") character in a string.  
 
Displays the double-quote (") character in a string.  
 
   
 
   
http://www.buyxanaxonlinepill.com/ xanax buy online - generic xanax online
+
== Usage ==
 +
<syntaxhighlight>DoubleQuote</syntaxhighlight>
  
http://www.buyxanaxonlinepill.com/ buy alprazolam online - buy xanax cheap
+
== Example ==
 +
<syntaxhighlight>Variable: ID(-1);
 +
 
 +
If LastBarOnChart Then
 +
  ID = Text_New(Date, Time, High + 1 Point, DoubleQuote + "Hello" + DoubleQuote);</syntaxhighlight>
 +
This example will display the word "Hello", including double quotes, on the last bar above the high.
 +
 +
[[Category:Text Manipulation]]

Latest revision as of 12:39, 13 February 2012

Displays the double-quote (") character in a string.

Usage

DoubleQuote

Example

Variable: ID(-1);

If LastBarOnChart Then 
   ID = Text_New(Date, Time, High + 1 Point, DoubleQuote + "Hello" + DoubleQuote);

This example will display the word "Hello", including double quotes, on the last bar above the high.