Welcome to the Traders Laboratory Forums.
Coding Forum Collaborate, receive help, or discuss coding related issues.

Reply
Old 06-30-2009, 04:20 PM   #1

Tams's Avatar

Join Date: Sep 2008
Location: Geelong
Posts: 3,779
Ignore this user

Thanks: 2,084
Thanked 1,474 Times in 912 Posts

SwingHigh / SwingLow (EasyLanguage Functions)

This thread is about programming in EasyLanguage
using the following functions:

SwingHigh
SwingLow

SwingHighBar
SwingLowBar
Tams is offline  
Reply With Quote
Old 06-30-2009, 04:30 PM   #2

Tams's Avatar

Join Date: Sep 2008
Location: Geelong
Posts: 3,779
Ignore this user

Thanks: 2,084
Thanked 1,474 Times in 912 Posts

Re: SwingHigh / SwingLow (EasyLanguage Functions)

SwingHigh (Function)


The SwingHigh function returns the high pivot price where a Swing High occurred.


Syntax

SwingHigh( Instance, Price, Strength, Length )


Returns (Integer)

A numeric value containing the high pivot price where the specified Swing High occurred, or -1 if not found.


Parameters

Instance (Numeric)
Sets which occurrence (that is, 1 = most recent, 2 = 2nd most recent, and
so on) to return.

Price (Numeric)
Specifies which bar value (price, function, or formula) to use.

Strength (Numeric)
Sets the required number of bars on either side of the swing bar.

Length (Numeric)
Sets the number of bars to be considered.


Remarks

A Swing High occurs when the Price of a bar is at least as high as the same Price on the preceding bar(s), and
higher than the same Price on the bar(s) that follow it.

The input Strength is the number of bars on each side of the SwingHigh.
A strength of 1 indicates that the value returned by the input Price must be greater than or equal to the same value returned for the bar on its left and greater than the bar on its right.

The input Length refers to the number of bars being examined for the SwingHigh.

The input Instance refers to which SwingHigh you want to use.

For example, if in a twenty-one bar period three swing highs were found,
it becomes necessary to specify which SwingHigh is desired.

If the most recent SwingHigh is desired, a one (1) would be substituted for the input Instance.


Note

If no SwingHigh is found in the period (Length) specified, the function will return a minus one (-1).

The value of the input Length must exceed Strength by at least one. In addition, the Maximum number of bars referenced by a study (known as MaxBarsBack) must be greater than the sum of the values of Strength and Length.


Example

Assigns to Value1 the most recently occurring High in over the last 10 bars that has a strength of 4 on both the left and
right sides of the swing bar..

Value1 = SwingHigh(1, Close, 4, 10);




SOURCE: EasyLanguage Manual
Tams is offline  
Reply With Quote
Old 06-30-2009, 04:40 PM   #3

Tams's Avatar

Join Date: Sep 2008
Location: Geelong
Posts: 3,779
Ignore this user

Thanks: 2,084
Thanked 1,474 Times in 912 Posts

Re: SwingHigh / SwingLow (EasyLanguage Functions)

SwingHighBar (Function)


The SwingHighBar function returns the number of bars ago a Swing High bar occurred.


Syntax

SwingHighBar( Instance, Price, Strength, Length )


Returns (Integer)

A numeric value containing the number of bars ago the specified Swing High occurred, or -1 if not found.


Parameters

Instance (Numeric)
Sets which occurrence (that is, 1 = most recent, 2 = 2nd most recent, and
so on) to return.

Price (Numeric)
Specifies which bar value (price, function, or formula) to use.

Strength (Numeric)
Sets the required number of bars on either side of the swing bar.

Length (Numeric)
Sets the number of trailing bars to consider.


Remarks

A Swing High occurs when the Price of a bar is at least as high as the same Price on the preceding bar(s), and
higher than the same Price on the bar(s) that follow it.

The input Strength is the number of bars on each side of the SwingHighBar.
A strength of 1 indicates that the value returned by the input Price must be:
-- greater than or equal to the same value returned for the bar on its left,
-- greater than the bar on its right.

The input Length refers to the number of bars being examined for the SwingHighBar.

The input Instance refers to which SwingHighBar you want to use.
For example, if in a twenty-one bar period three swing highs were found, it becomes necessary to specify which SwingHighBar is desired. If the most recent SwingHighBar is desired, a one (1) would be substituted for the input Instance.


Note

If no SwingHighBar is found in the period (Length) specified, the function will return a minus one (-1).
The value of the input Length must exceed Strength by at least one. In addition, the Maximum number of bars referenced by a study (known as MaxBarsBack) must be greater than the sum of the values of Strength and Length.


Example

Plots the number of bars ago that the most recent swing bar high occurred based on the Close with 3 bars on either side of the swing within 10 trailing bars.

Plot1( SwingHighBar( 1, Close, 3, 10 );



SOURCE: EasyLanguage Manual
Tams is offline  
Reply With Quote
The Following User Says Thank You to Tams For This Useful Post:
TIKITRADER (06-30-2009)

Reply

Thread Tools
Display Modes Help Others By Rating This Thread
Help Others By Rating This Thread:


Similar Threads
Thread Thread Starter Forum Replies Last Post
Antonio: Please help me on MP for easylanguage nasdaq5048 Market Profile 13 09-23-2010 09:50 AM
Easylanguage Error #408 and #410?? isisisis Coding Forum 2 04-10-2009 06:30 PM
EasyLanguage Getting Daily P/L vanyok Automated Trading 2 04-06-2009 05:11 PM
Functions In OEC Diff't Than TS Fyi Frank Open E Cry 0 03-01-2009 07:36 PM
Some EasyLanguage Help Please jjthetrader Coding Forum 8 06-02-2008 04:20 PM

All times are GMT -4. The time now is 01:25 PM.
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
CS to VB integration by DeskLancer
©2006-2011 Traders Laboratory, All Rights Reserved.