Patterns of Conflict, by John Boyd

The importance of John Boyd’s “Patterns of Conflict” cannot be overstated. It changed the military, the business world, and even sports forever. John Boyd was the most influential military thinker the United States ever produced. He delivered this brief hundreds of times in the 1970’s and 1980’s to lawmakers, military officials, legislative staffers, and anyone … Read more

Modum.io

What is Modum.io? modum.io offers a passive monitoring solution, ensuring GDP compliance and auditability by using blockchain and IoT technology. Modum’s tested solution offers a significant cost savings over the active-cooling methods currently used. An additional benefit provided, through the use of cutting-edge technology, is that valuable data can be created to drive continuous improvement … Read more

Learning Solidity with cryptozombies.io

Solidity is a contract-oriented programming language for writing smart contracts. It is used for implementing smart contracts on various blockchain platforms. It was created by the Etherium team. Remix is the official Solidity IDE. How to learn about it? there are already so many places where you can learn about it. I’m testing https://cryptozombies.io Cryptozombies.io I … Read more

Bubbles

This picture simplifies the theorical stages of a bubble: If you look for bitcoin bubble versus other bubbles you will find so many of draws done to compare this bubble with the other ones. The funny thing is that depending of the message the newspaper/blog/author wants to sell to you, you will find a different … Read more

AWS Machine Learning for enterprises

Today I attended this webinar to introduce the main components that AWS offers for working on Machine Learning. I like this picture that explains in plain english what is Deep Learning, machine learning and Artificial Inteligence. The main component of the overall solution is SageMaker, which is an integrated deep learning development and deployment platform, launched … Read more

Tradingview, Pine editor, SMA (6,70)

This code below has 2 interesting things: Calculate the SMA for 6 days and 70 days. Define a period of time for your backtesting //@version=3 strategy(“SMA – 6d – 70d”, overlay=true, initial_capital=1000) // === BACKTEST RANGE === FromMonth = input(defval = 1, title = “From Month”, minval = 1) FromDay = input(defval = 1, title … Read more

Pine editor, RSI + Bollinger Bands

The entry script done in Pine Editor (trading view) //@version=3 strategy(shorttitle=”joapenBB”, title=”joapen Bollinger Bands”, overlay=true) /////////// inputs ////////// // RSI length = input(14, minval=1) overSold = input(25, minval=1) overBought = input(75, minval=1) price = close // Bollinger Bands src = input(close, title=”Source”) mult = input(2.0, minval=0.001, maxval=50) basis = sma(src, length) dev = mult * … Read more

Trading view Pine Editor, hello world

Reading the book Machine Trading from Ernie P. Chang, on the first chapter it offers different oppinions about environments to gather historical data, do backtesting… I started to analyze which one of the solutions was better to cover the whole picture proposed in the book. My analysis was basically to compare Tradingview and Ninja Trader. … Read more