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
  • Parameters
  • MA1 Length
  • MA1 Type
  • MA2 Length
  • MA2 Type
  • Profit Margin
  • Loss Margin

Was this helpful?

  1. Examples
  2. Pshai Scripts (C#)

Calibrator

Developed by Pshai himself, the Calibrator provides a "dynamic stop-loss" in itself, which provides sell signals when ever close price has crossed below it (but not when the MA1 crosses below MA2!). The indicator initializes two fully customizable Moving Averages to provide buy signals for the entry. When ever buy signal is generated, the "dynamic stop-loss" and re-adjustment levels are reset according to that situation. If the price cuts through the re-adjustment level, both the "dynamic stop-loss" and re-adjustment levels will be recalculated based on the close price that cut through. This script is ideal for strong trends and can be adjusted to work in virtually any market conditions.

Parameters

MA1 Length

Length of the Moving Average.

MA1 Type

The type of the Moving Average.

Valid types: Sma, Ema, Dema, Tema, Trima, T3, Mama, Kama, Wma

MA2 Length

Length of the Moving Average.

MA2 Type

The type of the Moving Average.

Valid types: Sma, Ema, Dema, Tema, Trima, T3, Mama, Kama, Wma

Profit Margin

Re-adjustment level. Default is "0.04" which will be translated to "4%". If you want this to be at 15%, set the value to "0.15".

Loss Margin

Stop-loss level. Default is "0.02" which will be translated to "2%". If you want this to be at 15%, set the value to "0.15".

PreviousChaikin A/D LineNextPshai's RVI

Last updated 6 years ago

Was this helpful?