Uitleg van Anton Kreil over de werking van brokers en institutions:
https://www.youtube.com/watch?v=L7G0OfJUON8
Tampermonkey script: verberg knop 'naar huidige prijs'
// ==UserScript== // @name Hide to current price button in replay mode // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match https://www.tradingview.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=google.com // @require https://code.jquery.com/jquery-3.6.1.min.js // @grant none // ==/UserScript== (function() { 'use strict'; // Your code here... var t=setInterval(remove,1000); function remove(){ $(".controlsPanel-AlZykxhh div:last").hide(); } })();
Tampermonkey- script: shortcut naar 1h en 4h timeframe
// ==UserScript== // @name Switch timeframes using control key // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match https://www.tradingview.com/chart/ValkPoDT/ // @icon https://www.google.com/s2/favicons?sz=64&domain=tradingview.com // @grant none // ==/UserScript== (function() { 'use strict'; // Your code here... document.addEventListener('keydown', function(event) { if (event.altKey && event.key === '1') { document.querySelectorAll("[data-value='60']")[0].click(); } }); document.addEventListener('keydown', function(event) { if (event.altKey && event.key === '2'){ document.querySelectorAll("[data-value='240']")[0].click(); } }); })();
HTC Session Overview
Cycles - part 1 (Double Cycles)
Key Trading Zones and Levels (Supply, Demand) For High Probability Trading Setups
The Bollinger Bands secrets
Bollinger Bands - Band to Band move
The relation of the currencies
Secret of No.3 for trading with divergences
Exit plans for investor's style
Investing style trading
Trading Strategies - Entries & Management
Intraday strategies - part 2
Intraday strategies - part 1
Trading with chart patterns
Divergences - Part 3
Divergences - Part 2
Divergences - Part 1v
Candlestick patterns - webinar
Trading the Harmonic patterns - webinar
Money Management - Webinar
"Super Classico" - The unique cycle trading approach
If you don't pay attention, you will pay money
Turning principles - False break outs
On daily failed to create a HH and MA Divergence on MACD
On daily failed to create a LL and MA Divergence on MACD
- is the opposite situation toa divergence. If divergence is a tool to use to identify the end of a trend and possiblt reversals, then convergence is a tool we use to identify to confirm a trend.
- ideally convergence comes as a follow up to a divergence
- In convergence conditions we will see rhyme between the price and the indicator (MACD histogram).
So, when the chart is making LL's and LH's, the histogram is also making LL's and LH's. This is convergence.
The summary of all divergences
False Breaks
Hedging
Hedging, Yes or No
Hidden divergences - Convergences webinar
Difference hidden and regular divergence:
Regular: Shows when trend is most likely to end
Hidden: Shows when trend is most likely to continue. Can be seen on the MACD histogram, not the MACD MA's!
Bullish Hidden Divergence:
Reason why this is a continuation is because the volume increased (on the indicator) but price stays above the previous HL. So, more volume was used, but price stayed above the HL, meaning buyers were stronger, so it is very likely that price will continue to the up side.
Bearish Hidden Divergence:
Reason why this is a continuation is because the volume increased (on the indicator) but price stays below the previous LH. So, more volume was used, but price stayed below LH, meaning sellers were stronger, so it is very likely that price will continue to the down side.