Definition
Draws an Andrew's Pitchfork.
Syntax
DrawAndrewsPitchfork(string tag, bool autoScale, int anchor1BarsAgo, double anchor1Y, int anchor2BarsAgo, double anchor2Y, int anchor3BarsAgo, double anchor3Y)
Method Of
Custom Indicator, Custom Strategy
|
Parameters |
|
|
tag |
A user defined unique id used to reference the draw object. For example, if you pass in a value of "myTag", each time this tag is used, the same draw object is modified. If unique tags are used each time, a new draw object will be created each time. |
|
autoScale |
Determines if the draw object will be included in the y-axis scale |
|
anchor1BarsAgo |
The number of bars ago (x value) of the 1st anchor point |
|
anchor1Y |
The y value of the 1st anchor point |
|
anchor2BarsAgo |
The number of bars ago (x value) of the 2nd anchor point |
|
anchor2Y |
The y value of the 2nd anchor point |
|
anchor3BarsAgo |
The number of bars ago (x value) of the 3rd anchor point |
|
anchor3Y |
The y value of the 3rd anchor point |
Examples
|
DrawAndrewsPitchfork("tag1", true, 4, Low[4], 3, High[3], 1, Low[1]); |