OpenPine C++ API
C++ wrapper for the OpenPine Pine Script VM
Loading...
Searching...
No Matches
inputs.hpp
Go to the documentation of this file.
1#pragma once
2
14
15#if (defined(_MSVC_LANG) ? _MSVC_LANG : __cplusplus) < 201703L
16#error "OpenPine C++ wrapper headers require C++17."
17#endif
18
19namespace openpine {
20class ScriptInput;
21}
22
23#include "inputs/input_bool.hpp"
25#include "inputs/input_enum.hpp"
27#include "inputs/input_int.hpp"
34#include "inputs/input_time.hpp"
Wrapper for a single script input (borrowed from ScriptInfo).
C++ wrapper for boolean script input.
C++ wrapper for color script input.
C++ wrapper for enum script input.
C++ wrapper for float script input.
C++ wrapper for integer script input.
C++ wrapper for price script input.
C++ wrapper for session script input.
C++ wrapper for source script input.
C++ wrapper for string script input.
C++ wrapper for symbol script input.
C++ wrapper for text area script input.
C++ wrapper for time script input.
C++ wrapper for timeframe script input.