This tutorial describes the steps to add symbols to the TradingView chart at once.
Note
Only 5 pull requests per day can be merged from your personal repository into the main one. Carefully consider your changes and plan them in advance.
Note
If you have any questions or problems that you are unable to handle, please contact us at [email protected]. Our support team is available on weekdays from 7 AM to 4 PM UTC.
- Add your symbol description to the JSON file in the
symbol_info/repo_name.json
directory. - In your repository, open Actions and check if the Check data action finished successfully.
- In the main repository, open Actions and check if the Upload data action finished successfully.
- In the main repository, go to Pull requests and check that the pull request was merged automatically. If it was not merged automatically, check the Conversation tab in your pull request for validation warnings or errors.
- Open the TradingView chart and enter your symbol full name in Symbol Search.
On the chart, you will see
No data here
for your symbol. If you seeInvalid symbol
, it means that the symbol has not been uploaded into the TradingView storage yet.
Important
Symbols are uploaded into the TradingView storage every 10 minutes. Hence, symbols appear on the chart within 15 minutes.
Do not add symbol data before
No data here
appears on the chart. Otherwise, there may be problems with displaying data on the chart.
- Create a CSV file in the
data/
directory. - In your repository, open Actions and check if the Check data action finished successfully.
- In the main repository, open Actions and check if the Upload data action finished successfully.
- In the main repository, go to Pull requests and check that the pull request was merged automatically. If it was not merged automatically, check the Conversation tab in your pull request for validation warnings or errors.
- Open your symbol on the chart. Note that it can take a while before data can be displayed.
If you need to remove a symbol and its data, follow the steps below:
- Delete a CSV file with symbol data from the
data/
directory. - In your repository, open Actions and check if the Check data action finished successfully.
- In the main repository, open Actions and check if the Upload data action finished successfully.
- Remove the information about a symbol from the JSON file in the
symbol_info/repo_name.json
directory. - In your repository, open Actions and check if the Check data action finished successfully.
- In the main repository, open Actions and check if the Upload data action finished successfully.
- In the main repository, go to Pull requests and check that the pull request was merged automatically. If it was not merged automatically, check the Conversation tab in your pull request for validation warnings or errors.
Note
You can remove both a data file from
data/
and a symbol fromsymbol_info/repo_name.json
at once. To do this, you need to make changes in one commit and push it to your main branch. After that, you will only need to follow the 5−7 steps from the instructions above.