crypto-nodes
Version:
35 lines (29 loc) • 963 B
HTML
<!-- Assertion selector css Block -->
<script type="text/javascript">
RED.nodes.registerType('orderManager', {
category: 'crypto',
color: '#C0DEED',
defaults: {
name: {value: ""},
},
inputs: 1,
outputs: 4,
icon: "order.png",
label: function () {
return this.name || 'Order Manager';
},
inputLabels: [ 'Orderbook Fill Input' ],
outputLabels: [ 'Exchange Operations', 'Orderbook Operations', 'Order status', 'Errors' ],
oneditprepare: function() {
},
});
</script>
<script type="text/x-red" data-template-name="orderManager">
<div class="form-row">
<label for="node-input-name"><i class="icon-tag"></i> Name </label>
<input type="text" id="node-input-name" placeholder="Name">
</div>
</script>
<script type="text/x-red" data-help-name="orderManager">
<p>Retreives all bitmex orderbook data</p>
</script>