Skip to content

EMV — Ease of Movement

Relates price change to volume, indicating how easily a price moves. High values suggest price is moving easily on low volume.

Inputs: [high, low, volume] | Options: [] | Outputs: [emv]

Basic

use tulip_rs::indicators::emv::indicator;

let high   = vec![82.15, 81.89, 83.03, 83.30, 83.85,
                  83.90, 83.33, 84.30, 84.84, 85.00_f64];
let low    = vec![81.29, 80.64, 81.31, 82.65, 83.07,
                  83.11, 82.49, 82.30, 84.15, 84.11_f64];
let volume = vec![1200.0, 1400.0, 1100.0, 1600.0, 1300.0,
                  900.0, 1500.0, 1800.0, 1000.0, 1700.0_f64];

let inputs = [high.as_slice(), low.as_slice(), volume.as_slice()];
let (outputs, mut state) = indicator(&inputs, &[], None).unwrap();
println!("{:?}", outputs[0]); // EMV values

// State continuation — feed new bars without reprocessing history
let new_high   = vec![85.20_f64];
let new_low    = vec![84.50_f64];
let new_volume = vec![1550.0_f64];
let continued = state.batch_indicator(
    &[new_high.as_slice(), new_low.as_slice(), new_volume.as_slice()],
    None,
).unwrap();
println!("{:?}", continued[0]);
import numpy as np
import tulip_rs

high   = np.array([82.15, 81.89, 83.03, 83.30, 83.85,
                   83.90, 83.33, 84.30, 84.84, 85.00], dtype=np.float64)
low    = np.array([81.29, 80.64, 81.31, 82.65, 83.07,
                   83.11, 82.49, 82.30, 84.15, 84.11], dtype=np.float64)
volume = np.array([1200.0, 1400.0, 1100.0, 1600.0, 1300.0,
                   900.0, 1500.0, 1800.0, 1000.0, 1700.0], dtype=np.float64)

outputs, state = tulip_rs.indicators.emv.indicator([high, low, volume], [])
print(outputs[0])  # EMV values

# State continuation
new_high   = np.array([85.20], dtype=np.float64)
new_low    = np.array([84.50], dtype=np.float64)
new_volume = np.array([1550.0], dtype=np.float64)
continued = state.batch_indicator([new_high, new_low, new_volume])
print(continued[0])
import * as ti from 'tulip-rs-node';

const high   = [82.15, 81.89, 83.03, 83.30, 83.85, 83.90, 83.33, 84.30, 84.84, 85.00, 85.90, 86.58, 86.98, 88.00, 87.87];
const low    = [81.29, 80.64, 81.31, 82.65, 83.07, 83.11, 82.49, 82.30, 84.15, 84.11, 84.03, 85.39, 85.76, 87.17, 87.01];
const volume = [5653100, 6447400, 7690900, 3831400, 4455100, 3798000, 3936200, 4732000, 4841300, 3915300, 6830800, 6694100, 5293600, 7985800, 4807900];

const [outputs, state] = ti.emv.indicator([high, low, volume], []);
console.log('EMV:', outputs[0]);

// State continuation
const n = high.length - 5;
const [, state2] = ti.emv.indicator([high.slice(0, n), low.slice(0, n), volume.slice(0, n)], []);
const continued = state2.batchIndicator([high.slice(n), low.slice(n), volume.slice(n)]);
console.log('Continued EMV:', continued[0]);
import { init } from 'tulip-rs-wasm';
import * as ti from 'tulip-rs-wasm';

await init(); // bundler resolves the WASM asset automatically

const high   = [82.15, 81.89, 83.03, 83.30, 83.85, 83.90, 83.33, 84.30, 84.84, 85.00, 85.90, 86.58, 86.98, 88.00, 87.87];
const low    = [81.29, 80.64, 81.31, 82.65, 83.07, 83.11, 82.49, 82.30, 84.15, 84.11, 84.03, 85.39, 85.76, 87.17, 87.01];
const volume = [5653100, 6447400, 7690900, 3831400, 4455100, 3798000, 3936200, 4732000, 4841300, 3915300, 6830800, 6694100, 5293600, 7985800, 4807900];

const [outputs, state] = ti.emv.indicator([high, low, volume], []);
console.log('EMV:', outputs[0]);

// State continuation
const n = high.length - 5;
const [, state2] = ti.emv.indicator([high.slice(0, n), low.slice(0, n), volume.slice(0, n)], []);
const continued = state2.batchIndicator([high.slice(n), low.slice(n), volume.slice(n)]);
console.log('Continued EMV:', continued[0]);

Optional Outputs

emv exposes 1 optional output: medprice. Pass a boolean mask as the third argument — one bool per optional output, in order.

use tulip_rs::indicators::emv::indicator;

let close  = vec![81.59, 81.06, 82.87, 83.00, 83.61, 83.15, 82.84, 83.99, 84.55, 84.36_f64];
let high   = close.iter().map(|x| x + 1.0).collect::<Vec<_>>();
let low    = close.iter().map(|x| x - 1.0).collect::<Vec<_>>();
let volume = vec![10000.0, 12000.0, 9500.0, 11000.0, 13000.0, 9800.0, 10500.0, 12500.0, 11800.0, 10200.0_f64];

let mask = [true];
let (outputs, _state) = indicator(
    &[high.as_slice(), low.as_slice(), volume.as_slice()],
    &[],
    Some(&mask),
).unwrap();

let emv      = &outputs[0]; // emv (primary)
let medprice = &outputs[1]; // medprice (optional — requested)
import numpy as np
import tulip_rs

close  = np.array([81.59, 81.06, 82.87, 83.00, 83.61, 83.15, 82.84, 83.99, 84.55, 84.36], dtype=np.float64)
high   = close + 1.0
low    = close - 1.0
volume = np.array([10000.0, 12000.0, 9500.0, 11000.0, 13000.0, 9800.0, 10500.0, 12500.0, 11800.0, 10200.0], dtype=np.float64)

outputs, state = tulip_rs.indicators.emv.indicator(
    [high, low, volume], [],
    optional_outputs=[True],
)

emv      = outputs[0]  # emv (primary)
medprice = outputs[1]  # medprice (optional — requested)

emv exposes 1 optional output: medprice.

const [allOut] = ti.emv.indicator([high, low, volume], [], [true]);
const emv      = allOut[0]; // primary
const medprice = allOut[1]; // optional 0: medprice

SIMD

By assets — same options, N assets in parallel:

use tulip_rs::indicators::emv::indicator_by_assets;

let inputs: [&[&[f64]; 3]; 4] = [
    &[h1.as_slice(), l1.as_slice(), v1.as_slice()],
    &[h2.as_slice(), l2.as_slice(), v2.as_slice()],
    &[h3.as_slice(), l3.as_slice(), v3.as_slice()],
    &[h4.as_slice(), l4.as_slice(), v4.as_slice()],
];
let results = indicator_by_assets::<4>(&inputs, &[], None).unwrap();
for (i, asset_outputs) in results.iter().enumerate() {
    println!("Asset {}: {:?}", i + 1, asset_outputs[0]);
}

This indicator has no options, so by-options SIMD does not apply.

By assets — same options, N assets in parallel (must be 2, 4, 8, or 16):

simd_inputs = [
    [h1, l1, v1],
    [h2, l2, v2],
    [h3, l3, v3],
    [h4, l4, v4],
]
outputs_list, states = tulip_rs.indicators.emv.simd_by_assets(simd_inputs, [])
for i, asset_outputs in enumerate(outputs_list):
    print(f"Asset {i+1}: {asset_outputs[0]}")

This indicator has no options, so by-options SIMD does not apply.

By assets — applied to 4 assets in parallel:

const simdInputs = [
    [[...high], [...low], [...volume]],
    [high.map(v => v * 1.1), low.map(v => v * 1.1), volume.map(v => v * 1.1)],
    [high.map(v => v * 0.9), low.map(v => v * 0.9), volume.map(v => v * 0.9)],
    [high.map(v => v * 1.02), low.map(v => v * 1.02), volume.map(v => v * 1.02)],
];
const [results] = ti.emv.simdByAssets(simdInputs, []);
results.forEach((out, i) => console.log(`Asset ${i + 1}:`, out[0]));

This indicator has no options, so by-options SIMD does not apply.