Bulltrading
WebsiteLaunch AppYoutube(FR)Youtube(EN)
  • πŸ“˜Preface
  • Bulltrading Designer
    • βš’οΈDesigner
    • πŸ’»Editor
      • My indicators
      • MarketPlace
      • Create your first indicator
    • πŸ“ˆMy strategies
      • Publish
        • Personal Strategy
        • Strategy To Rent
    • πŸ‘¨β€πŸ’»Pinescript
      • First indicator
      • Pine Scriptβ„’ v5 User Manual
        • Pine Scriptβ„’ Execution Model
        • Time Series
        • Pine Script Structure
        • Identifiers
        • Operators
        • Variable declarations
        • Conditional structures
        • Loops
        • Type system
        • Built-ins
        • User-Defined Functions
      • Built-ins
        • Variables
          • Candles
          • Colors
          • Math
          • Ta
        • Functions
          • Indicator
          • Input
          • Plot
          • Na - Nz
          • Math
          • Ta
      • Bulltrading vs TradingView
  • Bulltrading tokens (BLT)
    • πŸͺ™BLT Tokenomics
    • 🧾BLT Contract
    • 🏦Hold Program
    • πŸ”’BLT Audit
    • 🎯[EN] How to buy BLT ?
    • 🎯[FR] Acheter du BLT
  • Other
    • ⁉️Frequently Asked Question
    • πŸ“ΊVideo Tutorials
    • πŸ“’Glossary
  • πŸ“Ί[FR] Youtube
  • πŸ“Ί[EN] Youtube
  • 🦊Twitter
  • 🦊Discord
  • 🦊Telegram
Powered by GitBook
On this page
  • Built-in Variables
  • Built-in Functions
  1. Bulltrading Designer
  2. Pinescript

Built-ins

Built-in Variables

Built-in variables serve diverse purposes, including:

  • Price- and volume-related variables: open, high, low, close, hl2, hlc3, ohlc4, volume.

Built-in Functions

Built-in functions in Pine Script can be categorized based on their application:

  • Math-related functions in the math namespace: math.abs(), math.log(), math.max().

  • Technical indicators in the ta namespace: ta.sma(), ta.ema(), ta.macd().

  • Support functions used in technical indicator computations in the ta namespace: ta.barssince(), ta.crossover(), ta.highest().

  • Input definition functions under the input namespace: input(), input.color(), input.int().

  • Indicators functions in the indicator namespace for placing orders: indicator.signal().

PreviousUser-Defined FunctionsNextVariables

Last updated 1 year ago

πŸ‘¨β€πŸ’»