Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Moved chart error variable #89

Open
wants to merge 1 commit into
base: candlesticks
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/views/Daily.vue
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ async function clickTradesModal(param1, param2, param3) {

//For setups I have added setups into filteredTrades. For screenshots and excursions I need to find so I create on each modal page a screenshot and excursion object
let findScreenshot = screenshots.find(obj => obj.name == filteredTradeId)
candlestickChartFailureMessage = null
if (findScreenshot) {
for (let key in screenshot) delete screenshot[key]
for (let key in findScreenshot) {
Expand All @@ -184,7 +185,6 @@ async function clickTradesModal(param1, param2, param3) {
screenshot.type = null

try {
candlestickChartFailureMessage = null
let ohlcTimestamps
let ohlcPrices
let ohlcVolumes
Expand Down