RSI BOT with Martingale
Right click here theSave link content as.. to download the xml file
| <xml xmlns="http://www.w3.org/1999/xhtml" collection="false"> | |
| <variables> | |
| <variable type="" id="2BJEgWrETy.wQT(ma`Bd">Stop_Loss</variable> | |
| <variable type="" id="(F(n|~C.|brNq^cKJYSJ">Take_Profit</variable> | |
| <variable type="" id="lf)sWOEvD,|IP.w_OG+)">Num_Recovery_Trades</variable> | |
| <variable type="" id="^Pqa(7av*MV.n%kJI-/Y">Initial_Stake</variable> | |
| <variable type="" id="~}kO.0!4,AqZzxSd?7@v">Tick_Period</variable> | |
| <variable type="" id="Bd}9;/DyJBx6}M_XOfAO">[fld2] Last Digit List</variable> | |
| <variable type="" id="FRYtr;rHM*-$Wn1HE67b">[fld2] How many ticks?</variable> | |
| <variable type="" id="$,]sPp#Skd7DOHe/S`bw">[fld2] Number (0-9)</variable> |
| import React, {Component} from "react"; | |
| import {Animated, Dimensions, Platform, Text, TouchableOpacity, View} from "react-native"; | |
| import {Body, Header, List, ListItem as Item, ScrollableTab, Tab, TabHeading, Tabs, Title} from "native-base"; | |
| import LinearGradient from "react-native-linear-gradient"; | |
| const {width: SCREEN_WIDTH} = Dimensions.get("window"); | |
| const IMAGE_HEIGHT = 250; | |
| const HEADER_HEIGHT = Platform.OS === "ios" ? 64 : 50; | |
| const SCROLL_HEIGHT = IMAGE_HEIGHT - HEADER_HEIGHT; | |
| const THEME_COLOR = "rgba(85,186,255, 1)"; |
RSI BOT with Martingale
Right click here theSave link content as.. to download the xml file
package.json, set version to a prerelease version, e.g. 2.0.0-rc1, 3.1.5-rc4, ...npm pack to create packagenpm publish <package>.tgz --tag next to publish the package under the next tagnpm install --save package@next to install prerelease packageI have tried a lot of solutions for IP-camera streams.
Vitamio.https://github.com/yixia/Vitamio-iOS
Result: random crashes and not working cameras
https://github.com/kolyvan/kxmovie
Result: compile time error. I haven't successfully integrated it to my project.
GStreamer. https://github.com/sdroege/gst-player
| var url = '/api/messages/stream-updates' + | |
| '?access_token=' + LoopBackAuth.accessTokenId; | |
| var src = new EventSource(url); | |
| var changes = createChangeStream(src); | |
| var set; | |
| Message.find({ | |
| filter: { | |
| where: { |
| #!/bin/bash | |
| # | |
| # Build Script for making standalone version of Tesseract | |
| # Wes Fowlks | |
| # 10/01/2014 | |
| # Originally posted at:https://code.google.com/p/tesseract-ocr/issues/detail?id=1326 | |
| # Original pastebin source: http://pastebin.com/VnGLHfbr | |
| # use env variables for these instead |
| 'use strict'; | |
| // simple express server | |
| var express = require('express'); | |
| var app = express(); | |
| var router = express.Router(); | |
| app.use(express.static('public')); | |
| app.get('/', function(req, res) { | |
| res.sendfile('./public/index.html'); |
| var mongoose = require('mongoose'); | |
| mongoose.connect('localhost', 'testing_emitUpdate'); | |
| var Schema = mongoose.Schema; | |
| var schema = new Schema({ | |
| name: String | |
| }); | |
| // plumbing | |
| schema.pre('save', function (next) { |
| """ | |
| Author: Simon Westphahl <westphahl@gmail.com> | |
| Description: Brute-force implementation for solving the TSP. | |
| http://en.wikipedia.org/wiki/Travelling_salesman_problem | |
| """ | |
| routes = [] | |
| def find_paths(node, cities, path, distance): |