This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//@version=5 | |
strategy("Price Action + Volume Delta Strategy", overlay=true) | |
// Internal Volume Delta Calculation | |
useCustomTimeframeInput = input.bool(false, "Use custom timeframe") | |
lowerTimeframeInput = input.timeframe("1", "Timeframe") | |
var lowerTimeframe = switch | |
useCustomTimeframeInput => lowerTimeframeInput | |
timeframe.isseconds => "1S" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const count = 5; | |
let current = 0; | |
function getAndTransformSurveys() { | |
return new Promise((resolve, reject) => { | |
setTimeout(() => { | |
resolve() | |
}, 500) | |
}) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import url(//fonts.googleapis.com/css?family=Lobster:400); | |
#top-header { | |
background: #FFF; | |
color: #383F4C; | |
padding: 0; | |
max-width: 100%; | |
width: 100%; | |
margin: auto; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact" | |
}, | |
"files.watcherExclude": { | |
"**/.git/objects/**": true, | |
"**/.git/subtree-cache/**": true, | |
"**/node_modules/**": true, | |
"**/web/node_modules": true, | |
"**/web/build": true, // will change frequently by build command |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Place your key bindings in this file to overwrite the defaults | |
[ | |
{ | |
"key": "ctrl+shift+tab", | |
"command": "workbench.action.previousEditor" | |
}, | |
{ | |
"key": "ctrl+tab", | |
"command": "workbench.action.nextEditor" | |
}, |