Do you know how can I scrape the values on the chart data on this page in python? Is it possible or not feasible?
https://platform.napbots.com/strategyDetails/STRAT_BTC_USD_D_2_V2
import requests
from bs4 import BeautifulSoup
import pandas as pd
import re
url = 'https://platform.napbots.com/strategyDetails/STRAT_BTC_USD_D_2_V2'
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')