TickMoneyFlow - Traders Laboratory

Go Back   Traders Laboratory > Trading Resources > Trading Indicators > Coding Forum

Coding Forum Collaborate, receive help, or discuss coding related issues.

Reply
 
LinkBack (1) Thread Tools Display Modes
  1 links from elsewhere to this Post. Click to view. #1 (permalink)  
Old 11-03-2007, 10:23 AM
jojojo's Avatar
jojojo has no status.

 
Join Date: May 2007
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
TickMoneyFlow

Here's another one for realtime.Not so bad.
Give it a try
Attached Files
File Type: eld TICKMONEYFLOW.ELD (4.8 KB, 30 views)

Reply With Quote
  #2 (permalink)  
Old 11-03-2007, 08:28 PM
unicorn's Avatar
unicorn has no status.

 
Join Date: Apr 2007
Posts: 164
Thanks: 25
Thanked 0 Times in 0 Posts
Arrow Re: TickMoneyFlow

Quote:
View Post
Here's another one for realtime.
Another moneyFlow indicator??

What is the formula for its computation?

Can you attach a screen-shot??

Thanks.
Unicorn.

Reply With Quote
  #3 (permalink)  
Old 11-05-2007, 07:57 AM
jojojo's Avatar
jojojo has no status.

 
Join Date: May 2007
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Re: TickMoneyFlow

Here please.It's recomended to use it on 1Tick-chart.

inputs:
Length( 14 ),
AlertLength( 14 ),
OverSold( 20 ),
OverBought( 80 ),
OverSColor( Cyan ),
OverBColor( Red ) ;

variables:
MoneyFlowVal( 0 ) ;

MoneyFlowVal = MoneyFlow( Length ) ;

Plot1( MoneyFlowVal, "MoneyFlow" ) ;
Plot2( OverBought, "OverBot" ) ;
Plot3( OverSold, "OverSld" ) ;

{ Color criteria }
if MoneyFlowVal > OverBought then
SetPlotColor( 1, OverBColor )
else if MoneyFlowVal < OverSold then
SetPlotColor( 1, OverSColor ) ;

{ Alert criteria }
if LowestBar( C, AlertLength ) = 0 and LowestBar( MoneyFlowVal, AlertLength ) > 0 then
Alert( "Bullish divergence - new low not confirmed" )
else if HighestBar( C, AlertLength ) = 0 and HighestBar( MoneyFlowVal, AlertLength ) > 0 then
Alert( "Bearish divergence - new high not confirmed" ) ;
Attached Images
File Type: png MoneyFlow.PNG (59.7 KB, 62 views)

Reply With Quote
  #4 (permalink)  
Old 11-05-2007, 08:01 AM
unicorn's Avatar
unicorn has no status.

 
Join Date: Apr 2007
Posts: 164
Thanks: 25
Thanked 0 Times in 0 Posts
Re: TickMoneyFlow

Quote:
View Post
Here please.It's recomended to use it on 1Tick-chart.
Thank you jojojo;

cheers.
Unicorn.

Reply With Quote
Reply


LinkBacks (?)
LinkBack to this Thread: http://www.traderslaboratory.com/forums/f56/tickmoneyflow-2763.html
Posted By For Type Date
Traders Laboratory - forumdisplay This thread Refback 11-03-2007 10:42 AM

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT -4. The time now is 06:48 PM.

 


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70