Console📕 Console Library
🔷  Introduction 
This script is an adaptation of the classic JavaScript console script. It provides a simple way to display data in a console-like table format for debugging purposes.
While there are many nice console/logger scripts out there, my personal goal was to achieve  inline functionality  and  visual object (label, lines) logging .
🔷  How to Use 
◼ 1. Import the Console library into your script:
 
import cryptolinx/Console/1
 
- or -
Instead of the library namespace, you can define a custom namespace as alias.
 
import cryptolinx/Console/1 as c
 
◼ 2. Create and init a new `` object.
The `init()` method is used to initialize the console object with default settings. It can be used to customize it.
 
// When using the `var` keyword in a declaration, the logs will act as ever-forwarding.
// Without `var`, the `console` variable will be redeclared every time `bar` is called.
// var console = Console.terminal.new(log_position=position.bottom_left, prefix = '> ', show_no = true)
 
- or -
If you has set up an alias before.
 
var console = c.terminal.new().init()
 
◼ 3. Logging
 
// inline ✨
array  testArray = array.new(3, .0).log(console)
// basic
console.log(testArray)
// inline ✨
var testLabel = label.new(bar_index, close, 'Label Text').log(console)
// basic
console.log(testLabel)
// It is also possible to use `().` for literals ✨.
int a = 100
testCalc = (5 * 100).log(console) + a.log(console) // SUM: 600
console.
.empty()
.log('SUM' + WS + testCalc.tostring())
 
◼ 4. Visibility
Finally, we need to call the `show()` method to display the logged messages in the console.
 
console.show(true) // True by default. Simply turn it on or off
Terminal
Noldo Blockchain Cryptocurrency Indicator
Hello, this script has the same logic as Noldo CFTC COT Forex Indicator : 
And Noldo CFTC COT Commodities Indicator : 
 * 
Script briefly calculates the period length between two signals of Pivot Reversal Strategy when new signal arrives and allows us to see relative Blockchain data and price changes of Major Cryptocurrencies over that automatic length.
This saves us from the hassle and time wasting of searching for a reference point.
 Usage 
 
 This script works only on all Bitcoin / U.S Dollar pairs and futures.
 
 
 It only works on 1W graphics.
 
 
 ICOT data are pulled via Quandl 
 
 NOTE :  
Since blockchain data is very votalile, 7-day ema values are adjusted to take into account.
Regards. 
Noldo CFTC COT Commodities IndicatorHi.
Hello, this script has the same logic as Noldo CFTC COT Forex indicator : 
It is the version for the future markets.
Major future assets are the subject.
 Usage 
 
 This script works only on SPGSCI (S&P Goldman Sachs Commodity Index).
 
 
 You must open SPGSCI : 
www.tradingview.com
 
 
 It only works on 1W graphics.
 
 
 Because COT data is announced on Tuesday, it will cause repaint every Tuesday.
However, since it is a terminal, this factor is not strong enough to affect your decisions.
For use, you should open the bottom panel, go a little to the right in the history section and enlarge the panel you have opened.
The terminal will take its form in the presentation and provide analysis on the big screen.
 
 
 COT data are pulled via Quandl.
 
Regards.
Terminal : Important U.S Indices Change (%) DataHello.
This script is a simple U.S Indices Data Terminal.
You can also set the period to look back manually in the menu.
In this way, an idea can be obtained about Major U.S Indices.
 Features 
 
 Value changes on a percentage basis (%)
 
 
 Recently, due to increasing interest, the NQNACE index has been added.
 
 
 Index descriptions are printed on the information panel.
 
 
 Sentiment NYSE ARCA and AMEX indices added.
 
 Indices 
 
 SP1! : S&P 500 Futures Index
 
 
 DJI : Dow Jones Industrial Average Index
 
 
 NDX : Nasdaq 100 Index
 
 
 RUT : Russell 2000 Index
 
 
 NYA : NYSE Composite Index
 
 
 OSX : PHLX Oil Service Sector Index
 
 
 HGX : PHLX Housing Sector Index
 
 
 UTY : PHLX Utility Sector Index
 
 
 SOX : PHLX Semiconductor Sector Index
 
 
 SPSIBI : S&P Biotechnology Select Industry Index
 
 
 XNG : NYSE ARCA Natural Gas Index
 
 
 SPGSCI : S&P Goldman Sachs Commodity Index
 
 
 XAU : PHLX Gold and Silver Sector Index
 
 
 SPSIOP : S&P Oil and Gas Exploration and Production Select Industry Index
 
 
 GDM : NYSE ARCA Gold Miners Index
 
 
 DRG : NYSE ARCA Pharmaceutical Index
 
 
 TOB : NYSE ARCA Tobacco Index
 
 
 DFI : NYSE ARCA Defense Index
 
 
 NWX : NYSE ARCA Networking Index
 
 
 XCI : NYSE ARCA Computer Technology
 
 
 XOI : AMEX Oil Index
 
 
 XAL : AMEX Airline Index
 
 
 NQNACE : Nasdaq Yewno North America Cannabis Economy Index
 
General Data TerminalHello.
This script is a simple General Data Terminal.
You can also set the period to look back manually in the menu.
In this way, an idea can be obtained about Global Markets.
 Note :   TIO = Iron Ore
Regards.
Basic Cryptocurrency TerminalHello,
This script is a simple Cryptocurrency Terminal.
It serves the same purpose as Heatmaps.
You can also set the period to look back manually in the menu.
Major Cryptocurrencies are taken into account.
And various Blockchain data are shown in the information panel.
In this way, an idea can be obtained about Cryptocurrency Market.
It is visually more convenient and clear to use in an indicator window under the chart, not on the chart, as follows:
Regards.





