Library "StringStringHashmap" A simple implementation of a key string-to-string value dictionary in pine script
create_ss_dict() Create an empty string-string dictionary Returns: the indices and elements of the dict
add_key_value(key, value, i, e) Add new key-value pair in the dictionary Parameters: key: string value: string i: string[] the indices of the dictionary e: string[] the element of the dictionary
get_value(key, i, e) Get the value of the given key Parameters: key: string i: string[] the indices of the dictionary e: string[] the element of the dictionary Returns: return the value of the given key
change_value(key, value, i, e) Change the value of the given key Parameters: key: string value: string i: string[] the indices of the dictionary e: string[] the element of the dictionary
Pine腳本庫
In true TradingView spirit, the author has published this Pine code as an open-source library so that other Pine programmers from our community can reuse it. Cheers to the author! You may use this library privately or in other open-source publications, but reuse of this code in publications is governed by House Rules.
In true TradingView spirit, the author has published this Pine code as an open-source library so that other Pine programmers from our community can reuse it. Cheers to the author! You may use this library privately or in other open-source publications, but reuse of this code in publications is governed by House Rules.