LogoLogo
Back to HaasOnline.comSwitch to Trade Platform
3.x
3.x
  • Welcome
  • Getting Started
    • Using Local API Server
    • Authentication
    • Response
      • Error Codes
  • HaasScript
    • Using HaasScript
      • HaasScript Facts
      • Charting
      • Order Handling
      • Interval
      • Input Fields
      • Positions Handling
        • Fee correction
      • Position Information
      • Memory Management
      • Optimizations
      • Signal Handling
      • Trading
    • Script Editor
      • Syntax
      • Parameters
      • Interaction
    • Visual Editor
      • Blocks
      • Parameters
      • Flow Control
      • Interaction
    • Custom Commands
    • Tutorials
      • Trade Bot Guide
        • Creating A Trade Bot
          • Visual Editor Guide
          • Script Editor Guide
          • Custom Containers
        • Customizing Indicators
        • Customizing Safeties
        • Customizing Insurances
        • Creating Easy Indicators
      • Unmanaged Trading Guide
        • Executing Orders
        • Managing Orders
        • Managing Positions
        • Managing Wallet
      • Script Editor
        • Classes
        • MadHatter BBands
        • Percentage Price Change
      • Visual Editor
        • Importing Scripts
        • SmoothRSI
        • Scalper Bot
    • Commands
      • Array Helpers
      • Charting
      • Constants
      • Custom Commands Helpers
      • Easy Indicators
      • Easy Insurances
      • Easy Safeties
      • Equations
      • Flow Control
      • Input Fields
      • Input Settings
      • Mathematical
      • Memory Helpers
      • Miscellaneous
      • Order Handling
      • Order Information
      • Position Information
      • Position Prices
      • Price Data
      • Price Market Information
      • Profit Information
      • Settings
      • Signal Helpers
      • String Helpers
      • Technical Analysis
      • Technical Analysis Helpers
      • Time Information
      • Trade Actions (Managed)
      • Trade Actions (Unmanaged)
      • Trade Bot
      • Trade Market Information
      • Wallet
  • API Endpoints
    • Software API
    • Market Data API
    • Account Data API
    • Trade Data API
    • Advanced Order API
    • Trade Bot API
    • Custom Trade Bot API
    • ENUMS
    • Data Objects
  • Examples
    • Script Bots (C#)
      • Scalper Trade Bot
      • Flash Crash Trade Bot
    • Script Indicators (C#)
      • Indicator Script
      • Technical Analysis Library
    • Pshai Scripts (C#)
      • BBands Ext
      • BBands Ext v2
      • Chaikin A/D Line
      • Calibrator
      • Pshai's RVI
    • Scripted Driver
  • Other Resources
    • YouTube
    • Guides & Tutorials
    • Questions & Answers
    • Community Projects
  • Need Help?
    • Ask on Discord
    • Submit Support Ticket
Powered by GitBook
On this page
  • CrossOver
  • CrossOverSince
  • CrossUnder
  • CrossUnderSince
  • GetSwing
  • IsFalling
  • IsFallingSince
  • IsRising
  • IsRisingSince

Was this helpful?

  1. HaasScript
  2. Commands

Technical Analysis Helpers

CrossOver

Checks if a crossover occurs between value1 and value2.

  • CrossOver(value1, value2)

Returns true if a crossover occurs between value1 and value2. Otherwise false.

Return Type: Boolean

Parameter Name

Parameter Type

Required

Suggested

value1

NumberOrTable

True

-

value2

NumberOrTable

True

-

CrossOverSince

Calculates the number of ticks since the last crossover.

  • CrossOverSince(value1, value2)

Returns the number of ticks since the last crossover. Return value of 1 represents the crossunder happening 'now'.

Return Type: Number

Parameter Name

Parameter Type

Required

Suggested

value1

NumberOrTable

True

-

value2

NumberOrTable

True

-

CrossUnder

Checks if a crossunder occurs between value1 and value2.

  • CrossUnder(value1, value2)

Returns true if a crossunder occurs between value1 and value2. Otherwise false.

Return Type: Boolean

Parameter Name

Parameter Type

Required

Suggested

value1

NumberOrTable

True

-

value2

NumberOrTable

True

-

CrossUnderSince

Calculates the number of ticks since the last crossunder.

  • CrossUnderSince(value1, value2)

Returns the number of ticks since the last crossunder. Return value of 1 represents the crossunder happening 'now'.

Return Type: Number

Parameter Name

Parameter Type

Required

Suggested

value1

NumberOrTable

True

-

value2

NumberOrTable

True

-

GetSwing

Calculates the amount of swing in percentages.

  • GetSwing(input1, input2)

Returns the amount of swing in percentages.

Return Type: ListNumbers

Parameter Name

Parameter Type

Required

Suggested

input1

NumberOrTable

True

-

input2

NumberOrTable

True

-

IsFalling

Checks if the values are decreasing towards the newest within the lookback period.

  • IsFalling(array, lookback)

Returns true if the values are decreasing towards the newest within the lookback period. Otherwise false.

Return Type: Boolean

Parameter Name

Parameter Type

Required

Suggested

array

ListNumbers

True

-

lookback

Number

True

Input, Number, SessionGet

IsFallingSince

Counts the number of falling ticks.

  • IsFallingSince(array, lookback)

Returns the number of ticks the data is falling.

Return Type: Number

Parameter Name

Parameter Type

Required

Suggested

array

ListNumbers

True

-

lookback

Number

True

Input, Number, SessionGet

IsRising

Checks if the values are increasing towards the newest within the lookback period.

  • IsRising(array, lookback)

Returns true if the values are increasing towards the newest within the lookback period. Otherwise false.

Return Type: Boolean

Parameter Name

Parameter Type

Required

Suggested

array

ListNumbers

True

-

lookback

Number

True

Input, Number, SessionGet

IsRisingSince

Counts the number of rising ticks.

  • IsRisingSince(array, lookback)

Returns the number of ticks the data is rising.

Return Type: Number

Parameter Name

Parameter Type

Required

Suggested

array

ListNumbers

True

-

lookback

Number

True

Input, Number, SessionGet

PreviousTechnical AnalysisNextTime Information

Last updated 4 years ago

Was this helpful?