| Coding Forum Collaborate, receive help, or discuss coding related issues. |
![]() | | Tweet | |
| | #1 | ||
| Status: Super Moderator Join Date: Aug 2006 Location: Tokyo Posts: 3,618 Thanks: 545
Thanked 1,346 Times in 484 Posts
Blog Entries: 4 | Collaboration to design a new indicator? What I want is an indicator that plots a histogram of the difference between the number of contracts at the ask vs the number of contracts at the bid. I want this difference taken from a tick chart of choice. For example: If the tick chart settings were set to 233 tick chart, the histogram will plot the difference between the number of contracts at the ask minus the number of contracts at the bid off one 233 tick bar. The parameters for the tick chart settings can be changed to whatever. If anyone can help me with this it would be appreciated. I have no knowledge of EL or coding. Thanks
__________________ | ||
| |
|
| | #2 | ||
![]() Join Date: Oct 2006 Location: Stockton Springs, Maine Posts: 1,440 Thanks: 0
Thanked 52 Times in 18 Posts
| Re: Collaboration to design a new indicator? If I knew easy language I'd be all about helping.
| ||
| |
|
| | #3 | ||
| Status: Super Moderator Join Date: Aug 2006 Location: Tokyo Posts: 3,618 Thanks: 545
Thanked 1,346 Times in 484 Posts
Blog Entries: 4 | Re: Collaboration to design a new indicator?
__________________ | ||
| |
|
| | #4 | ||
![]() | Re: Collaboration to design a new indicator? | ||
| |
|
| | #5 | ||
| Status: Super Moderator Join Date: Aug 2006 Location: Tokyo Posts: 3,618 Thanks: 545
Thanked 1,346 Times in 484 Posts
Blog Entries: 4 | Re: Collaboration to design a new indicator?
__________________ | ||
| |
|
| | #6 | ||
![]() | Re: Collaboration to design a new indicator? Code: inputs: UpColor(green), DownColor(red); variables: MyVol(0), Color(yellow), intrabarpersist MyCurrentBar(0), intrabarpersist VolumeAtBid(0), intrabarpersist VolumeAtAsk(0), intrabarpersist BAVolDiff(0), intrabarpersist VolTmp(0); if LastBarOnChart then begin MyVol = Iff(BarType < 2, Ticks, Volume); if CurrentBar > MyCurrentBar then begin VolumeAtBid = 0; VolumeAtAsk = 0; BAVolDiff= 0; VolTmp = 0; MyCurrentBar = CurrentBar; end; if InsideBid < InsideAsk then begin if Close <= InsideBid then VolumeAtBid = VolumeAtBid + MyVol - VolTmp else if Close >= InsideAsk then VolumeAtAsk = VolumeAtAsk + MyVol - VolTmp ; end; if VolumeAtBid > 0 and VolumeAtAsk > 0 then BAVolDiff= VolumeAtAsk-VolumeAtBid ; VolTmp = MyVol ; end ; if BAVolDiff<= 0 then color = DownColor else color = UpColor; plot1(BAVolDiff, "BAVolDiff", color); Plot2( 0, "ZeroLine" ) ; Regards | ||
| |
|
| | #7 | ||
| Status: Super Moderator Join Date: Aug 2006 Location: Tokyo Posts: 3,618 Thanks: 545
Thanked 1,346 Times in 484 Posts
Blog Entries: 4 | Re: Collaboration to design a new indicator?
__________________ | ||
| |
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
| |
| ∧ Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Free indicator for eSignal? | keymoo | Market Profile | 3 | 05-15-2011 12:55 PM |
| BB Squeeze Replica For Tradestation | Soultrader | Trading Indicators | 56 | 07-08-2009 05:39 PM |
| Is the RSI indicator any good? | Lisa | Technical Analysis | 14 | 04-27-2008 01:41 PM |
| Ant: Is there any way to improve this indicator? | nasdaq5048 | Market Profile | 3 | 12-22-2006 12:45 PM |