chartingshow / documentation

Documentation for Charting Show
GNU General Public License v3.0
0 stars 0 forks source link

Update Core Algorithm: Add String-Manipulation Module #270

Open summercms opened 3 months ago

summercms commented 3 months ago

Enhancement idea

Description

This module provides string manipulation features to the core algorithm code. The following list of features are provided:

Note for developers: Using too many string operations will negatively impact the performance of a trading algorithm. If at all possible, restrict the calculation of string manipulation routines in your code to the first or final candlestick bar of the dataset to reduce their influence. This can be accomplished by enclosing code blocks or by utilising the var keyword when declaring variables that hold the outcome of your text manipulations.

Links

n/a

summercms commented 3 months ago

Merge to Core code and Crypto Market algorithms.