Dim J As HttpJob
J.Initialize(Null, Me)
J.PostString($"https://api.twelvedata.com/complex_data?apikey=${Twelvedata_APIKey}"$, JSONGenerator.ToString.Replace("\", "").Replace("""[", "[").Replace("]""", "]")) 'REMOVE UNNECESSARY CHARACTERS
J.GetRequest.SetContentType("application/json")
Wait For (J) JobDone(j As HttpJob)
If J.Success Then
Log(J.GetString)
If J.GetString.Contains("**symbol**") Then
ToastMsg.Show($"Select another symbol${CRLF}${Symbol} is not available with your plan"$)
Else
ParseTickerData(J.GetString) 'Parge the company ticker JSON data
End If
End If
j.Release