MetaCurrency Project • Commons Engine
- Welcome, intro, intentions, systemic pressures, and new maps
- Deep Wealth & Meta-Capitalin
| with import <nixpkgs> {}; | |
| stdenv.mkDerivation { | |
| name = "base-jekyll-builder"; | |
| buildInputs = [ | |
| ruby | |
| jekyll | |
| nodejs | |
| ]; |
| ```Dockerfile | |
| FROM fpco/stack-build:lts-14.7 | |
| # Install all necessary Ubuntu packages | |
| RUN apt-get update && apt-get install -y python3-pip libgmp-dev libmagic-dev libtinfo-dev libzmq3-dev libcairo2-dev libpango1.0-dev libblas-dev liblapack-dev gcc g++ nodejs && \ | |
| rm -rf /var/lib/apt/lists/* | |
| # Install Jupyter notebook | |
| RUN pip3 install -U jupyterlab |
| # see https://nixos.org/nixos/packages.html to search for more | |
| with import <nixpkgs> {}; | |
| # with pkgs; | |
| let | |
| my-python-packages = python-packages: with python-packages; [ | |
| jupyterlab | |
| pandas | |
| numpy |
MetaCurrency Project • Commons Engine
EMA Ribbon
//@version=3
study(title="Exponential Moving Average Ribbon", shorttitle="EMA", overlay=true)
src = input(title="Source", type=source, defval=close)
// srcno = input(close, title="Source None", scale=scale.none)
// https://www.tradingcode.net/tradingview/indicator-settings/scale-indicator/