|
charlotte nc
Experience: Advanced
Platform: My Own System
Posts: 409 since Jan 2015
Thanks Given: 91
Thanks Received: 1,153
|
Depending on your platform this can likely be achieved with a bit of programming. For example in you could easily program this using the bar indexing. Close[0] = last bar, Close[1] = 1 bar ago, Close[2] = 2 bars ago, etc. With this type of indexing you can set up something like:
If Volume(Close[0]) > Volume([1])
{
// Do something
}
Fairly easy to program in NT, and I imagine other platforms as well.
Happy trading,
Ian
|