pine-builtins 0.2.1

Built-in functions and namespaces for the Pine Script interpreter.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Constant-only namespaces: objects whose members are fixed string tags used
//! as arguments elsewhere (e.g. `plotshape(..., style=shape.circle)`).
//!
//! Each follows the same shape as `currency` — a `Value::Object` of string
//! constants. Only `size`, `shape`, and `location` live here for now; the other
//! constant families remain in their own modules.

pub mod barmerge;
pub mod display;
pub mod extend;
pub mod format;
pub mod location;
pub mod order;
pub mod position;
pub mod shape;
pub mod size;
pub mod text;
pub mod xloc;